summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/privateResources/mylibrary/build.gradle
blob: c7ff96b44718c4633f642dec94249131a15d8a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
apply plugin: 'com.android.library'

android {
    namespace "com.android.tools.test.mylibrary"
    compileSdkVersion libs.versions.latestCompileSdk.get().toInteger()
    buildToolsVersion = libs.versions.buildToolsVersion.get()
    resourcePrefix 'mylib_'

    defaultConfig {
        minSdkVersion 21
        //noinspection ExpiringTargetSdkVersion,ExpiredTargetSdkVersion
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
}