summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/combinedDensityAndLanguageSplits/build.gradle
blob: 4b4bd579ff40c86bdedaf7e7b83a3da69e63e935 (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
28
29
30
31
32
33
34
35
36
37
apply from: "../commonHeader.gradle"
buildscript { apply from: "../commonBuildScript.gradle" }


apply plugin: 'com.android.application'

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

  defaultConfig {
    versionCode 12
    versionName "unique_string"
    minSdkVersion 21
    //noinspection ExpiringTargetSdkVersion,ExpiredTargetSdkVersion
    targetSdkVersion 21
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  }

  splits {
    density {
      enable true
      exclude "ldpi", "tvdpi", "xxxhdpi"
    }
    language {
        enable true
        include "fr,fr-rBE", "fr-rCA", "en"
    }
  }
}

dependencies {
  testImplementation 'junit:junit:4.12'
  androidTestImplementation "com.android.support.test:runner:${project.testSupportLibVersion}"
  androidTestImplementation "com.android.support.test:rules:${project.testSupportLibVersion}"
}