| plugins { |
| id 'com.android.dynamic-feature' |
| } |
| android { |
| compileSdkVersion 30 |
| buildToolsVersion '30.0.3' |
| |
| defaultConfig { |
| applicationId 'com.example.dynamicfeature' |
| minSdkVersion 21 |
| targetSdkVersion 30 |
| versionCode 1 |
| versionName '1.0' |
| |
| testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' |
| } |
| |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| } |
| } |
| } |
| |
| dependencies { |
| implementation project(path: ':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' |
| } |