summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/multiDexWithLib/lib/build.gradle
blob: a46057805441edfb2acedefaa6a06e120f6f693a (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
apply plugin: 'com.android.library'

android {
  namespace "com.android.tests.basic.lib"
  testNamespace "com.android.tests.basic"
  compileSdkVersion rootProject.latestCompileSdk
  buildToolsVersion = rootProject.buildToolsVersion

  defaultConfig {
    minSdkVersion libs.versions.supportLibMinSdk.get()
  }

  buildTypes {
    debug {
      // needed for the test app.
      multiDexEnabled = true
    }
  }

  packagingOptions.exclude '.readme'
}

dependencies {
  api fileTree(dir: 'libs', include: '*.jar')
}