summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/dynamicApp/app/build.gradle
blob: 60d2bd9ba6ecc3b9551d46007e208a893cd9322f (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
25
26
27
28
29
30
31
32
33
34
35
36
apply plugin: 'com.android.application'

android {
    namespace "com.example.app"
    compileSdkVersion libs.versions.latestCompileSdk.get().toInteger()

    dynamicFeatures = [':feature1', ':feature2']

    defaultConfig {
        minSdkVersion 18
        multiDexEnabled true
    }

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

    lintOptions {
        htmlReport true
        htmlOutput file("lint-report.html")
        textReport true
        textOutput file("lint-results.txt")
        explainIssues false
        absolutePaths false
        ignoreTestSources true
    }
}

dependencies {
    implementation 'com.android.support.constraint:constraint-layout:' + libs.versions.constraintLayoutVersion.get()
    implementation files('./foo.jar')
    implementation files('./bar.aar')
}