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


if (buildToolsVersion < '21.0.0') {
    println ("Warning : this sample requires build-tools version 21 or above")
}

apply plugin: 'com.android.library'

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

  defaultConfig {
    versionCode 12
    minSdkVersion 16
    //noinspection ExpiringTargetSdkVersion,ExpiredTargetSdkVersion
    targetSdkVersion 20
  }
}

dependencies {
  api 'com.google.code.gson:gson:2.8.6'
}