2021-03-04 21:18:38 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 29
|
|
|
|
|
|
|
|
defaultConfig {
|
2021-03-29 18:11:32 +02:00
|
|
|
applicationId "de.jg_cody.Teraplex"
|
2021-03-04 21:18:38 +01:00
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 29
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2021-04-16 21:41:45 +02:00
|
|
|
multiDexEnabled true
|
|
|
|
|
|
|
|
archivesBaseName = "Teraplex"
|
2021-03-04 21:18:38 +01:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
2021-05-24 17:38:23 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.0'
|
2021-03-04 21:18:38 +01:00
|
|
|
implementation 'com.google.android.material:material:1.3.0'
|
2021-06-03 23:34:38 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.0-beta02'
|
2021-05-24 17:38:23 +02:00
|
|
|
implementation 'androidx.navigation:navigation-fragment:2.3.5'
|
|
|
|
implementation 'androidx.navigation:navigation-ui:2.3.5'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
|
2021-03-06 15:29:50 +01:00
|
|
|
implementation 'com.jcraft:jsch:0.1.55'
|
2021-06-12 16:21:13 +02:00
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2021-05-24 17:38:23 +02:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2021-03-04 21:18:38 +01:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
2021-05-24 16:49:02 +02:00
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2021-05-31 19:25:14 +02:00
|
|
|
implementation 'com.github.martin-stone:hsv-alpha-color-picker-android:3.0.1'
|
2021-06-02 17:15:16 +02:00
|
|
|
}
|
2021-05-24 16:49:02 +02:00
|
|
|
repositories {
|
|
|
|
maven { url "https://jitpack.io" }
|
2021-03-04 21:18:38 +01:00
|
|
|
}
|