• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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