plugins { id 'com.android.application' } android { compileSdkVersion 29 defaultConfig { applicationId "de.jg_cody.Teraplex" minSdkVersion 16 targetSdkVersion 29 versionCode 1 versionName "1.0" multiDexEnabled true archivesBaseName = "Teraplex" 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 { implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'com.google.android.material:material:1.3.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'androidx.navigation:navigation-fragment:2.3.3' implementation 'androidx.navigation:navigation-ui:2.3.3' implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.0' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0' implementation 'com.jcraft:jsch:0.1.55' testImplementation 'junit:junit:4.+' androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' implementation 'android.support:support-v4:28.0.0' implementation 'android.support:appcompat-v7:28.0.0' implementation 'android.support:preference-v7:28.0.0' implementation fileTree(include: ['*.jar'], dir: 'libs') implementation project(':colorpicker') } repositories { maven { url "https://jitpack.io" } }