Commit | Line | Data |
---|---|---|
9b05b757 NR |
1 | apply plugin: 'com.android.application' |
2 | ||
3 | android { | |
4 | compileSdkVersion 26 | |
5 | defaultConfig { | |
6 | applicationId "" | |
7 | minSdkVersion 14 | |
8 | targetSdkVersion 14 | |
9 | versionCode 1 | |
10 | versionName "1.0" | |
11 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | |
12 | } | |
13 | buildTypes { | |
14 | release { | |
15 | minifyEnabled false | |
16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
17 | } | |
18 | } | |
53282dec NR |
19 | sourceSets { |
20 | main { | |
21 | java { | |
22 | exclude '' | |
23 | } | |
24 | } | |
25 | } | |
9b05b757 NR |
26 | } |
27 | ||
28 | dependencies { | |
29 | implementation fileTree(dir: 'libs', include: ['*.jar']) | |
30 | implementation 'com.android.support.constraint:constraint-layout:1.0.2' | |
31 | implementation 'com.android.support:support-v4:26.1.0' | |
32 | testImplementation 'junit:junit:4.12' | |
33 | androidTestImplementation 'com.android.support.test:runner:1.0.1' | |
34 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' | |
35 | } | |
53282dec NR |
36 | |
37 |