summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/dynamicApp/feature1/build.gradle
blob: 63292e717cdd5f021346c9359b23039373a4f751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
apply plugin: 'com.android.dynamic-feature'

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

    defaultConfig {
        minSdkVersion 18
    }

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

dependencies {
    implementation project(':app')
}