From 964659af010920d4f54e8ae222ddc77549f53fd9 Mon Sep 17 00:00:00 2001 From: Jarne Demeulemeester Date: Sat, 12 Mar 2022 15:31:57 +0100 Subject: [PATCH] Remove coreLibraryDesugaring and testing dependencies Testing dependencies may be added again later when we finally start writing some tests. --- app/build.gradle.kts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 30026887..7488998a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -18,8 +18,6 @@ android { targetSdk = 32 versionCode = 8 versionName = "0.3.2" - - testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } buildTypes { @@ -47,7 +45,6 @@ android { } compileOptions { - isCoreLibraryDesugaringEnabled = true sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } @@ -131,11 +128,4 @@ dependencies { val aboutLibrariesVersion = "10.0.0" implementation("com.mikepenz:aboutlibraries-core:$aboutLibrariesVersion") implementation("com.mikepenz:aboutlibraries:$aboutLibrariesVersion") - - // Testing - testImplementation("junit:junit:4.13.2") - androidTestImplementation("androidx.test.ext:junit:1.1.3") - androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0") - - coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.5") } \ No newline at end of file