summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/shrinkDynamicFeatureModules/base/build.gradle
blob: b12182806a08fb8228dc673b66b81a602b609823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
apply plugin: 'com.android.application'

android {
    namespace "com.android.tests.shrink"
    compileSdkVersion libs.versions.latestCompileSdk.get().toInteger()
    buildToolsVersion libs.versions.buildToolsVersion.get()

    defaultConfig {
        applicationId "com.android.tests.shrink"
        versionCode 12
        versionName "2.0"
        minSdkVersion 26
    }

    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    dynamicFeatures = [":feature"]
}