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

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

  defaultConfig {
    versionCode 12
    minSdkVersion 16
    //noinspection ExpiringTargetSdkVersion,ExpiredTargetSdkVersion
    targetSdkVersion 20
  }
  buildTypes {
    minifyDontShrink.initWith(debug)
  }
}