• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'com.android.application'
2
3repositories {
4    jcenter()
5}
6
7android {
8    compileSdkVersion 25
9    buildToolsVersion '25.0.0'
10
11    defaultConfig {
12        applicationId "com.linkedin.dexmaker"
13        minSdkVersion 8
14        targetSdkVersion 25
15        versionCode 1
16        versionName VERSION_NAME
17
18        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
19    }
20}
21
22dependencies {
23    compile project(":dexmaker")
24
25    androidTestCompile 'com.android.support.test:runner:0.5'
26    androidTestCompile 'junit:junit:4.12'
27}
28