File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed
example/androidlib/kotlin/1-hello-kotlin Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -43,16 +43,6 @@ object app extends AndroidAppKotlinModule {
43
43
44
44
override def androidIsDebug: T[Boolean] = Task { false }
45
45
46
- override def androidReleaseSettings: T[AndroidBuildTypeSettings] = Task {
47
- super.androidReleaseSettings()
48
- .withDefaultProguardFile("proguard-android.txt")
49
- .withProguardLocalFiles(
50
- Seq(
51
- moduleDir / "proguard-rules.pro"
52
- )
53
- )
54
- }
55
-
56
46
object test extends AndroidAppKotlinTests with TestModule.Junit4 {
57
47
def junit4Version = "4.13.2"
58
48
}
@@ -68,14 +58,6 @@ object app extends AndroidAppKotlinModule {
68
58
false
69
59
}
70
60
71
- override def androidReleaseSettings: T[AndroidBuildTypeSettings] = Task {
72
- AndroidBuildTypeSettings(isMinifyEnabled = false)
73
- }
74
-
75
- /* TODO currently the dependency resolution ignores the platform type and kotlinx-coroutines-core has
76
- * conflicting classes with kotlinx-coroutines-core-jvm . Remove the exclusions once the dependency
77
- * resolution resolves conflicts between androidJvm and jvm platform types
78
- */
79
61
def mvnDeps = super.mvnDeps() ++ Seq(
80
62
mvn"androidx.test.ext:junit:1.2.1",
81
63
mvn"androidx.test:runner:1.6.2",
You can’t perform that action at this time.
0 commit comments