summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/namespacedApp/build.gradle
blob: 3eaebb42e00af395e62e999ac6017765608fcee9 (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
apply from: "../commonHeader.gradle"
buildscript { apply from: "../commonBuildScript.gradle" }

apply plugin: 'com.android.application'

android {
    namespace "com.example.namespacedApp"
    compileSdkVersion rootProject.latestCompileSdk
    buildToolsVersion = rootProject.buildToolsVersion
    defaultConfig {
        applicationId "com.example.namespacedApp"
        minSdkVersion 15
        //noinspection ExpiringTargetSdkVersion,ExpiredTargetSdkVersion
        targetSdkVersion rootProject.latestCompileSdk
        versionCode 1
        versionName "1.0"
    }

    aaptOptions.namespaced = true
}

dependencies {
    implementation 'com.android.support:support-media-compat:' + libs.versions.supportLibVersion.get()
    implementation 'com.android.support:design:' + libs.versions.supportLibVersion.get()
    implementation 'com.android.support.constraint:constraint-layout:' +
            libs.versions.constraintLayoutVersion.get()
}