| plugins { |
| id("com.android.dynamic-feature") |
| } |
| android { |
| compileSdkVersion(30) |
| buildToolsVersion = "30.0.3" |
| |
| defaultConfig { |
| minSdkVersion(21) |
| |
| testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" |
| } |
| |
| buildTypes { |
| getByName("release") { |
| isMinifyEnabled = false |
| proguardFiles( |
| getDefaultProguardFile("proguard-android-optimize.txt"), |
| "proguard-rules.pro" |
| ) |
| } |
| } |
| } |
| |
| dependencies { |
| implementation(project(":app")) |
| testImplementation("junit:junit:4.+") |
| androidTestImplementation("androidx.test.ext:junit:1.1.2") |
| androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0") |
| androidTestImplementation("androidx.annotation:annotation:1.2.0") |
| } |