xref: /aosp_15_r20/external/dexmaker/dexmaker-tests/build.gradle (revision 2ffc472c461b441c3ddd38c52c72da5a6be8f680)
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 32
5
6    defaultConfig {
7        applicationId 'com.linkedin.dexmaker'
8        minSdkVersion 14
9        targetSdkVersion 32
10        versionCode 1
11        versionName VERSION_NAME
12
13        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
14    }
15}
16
17dependencies {
18    implementation project(":dexmaker")
19
20    androidTestImplementation 'androidx.test:runner:1.4.0'
21    androidTestImplementation 'junit:junit:4.13.2'
22}
23