]> git.somenet.org - android/helloworld.git/blob - app/build.gradle
Some visual update and store info added.
[android/helloworld.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 23
5     buildToolsVersion "23.0.1"
6
7     defaultConfig {
8         applicationId "org.somenet.android.helloworld2"
9         minSdkVersion 19
10         targetSdkVersion 23
11         versionCode 7
12         versionName "2.1.0"
13     }
14     buildTypes {
15         release {
16             minifyEnabled false
17             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18         }
19     }
20
21     if(new File("${System.properties['user.home']}/.android/release.gradle").exists()) {
22         apply from: "${System.properties['user.home']}/.android/release.gradle";
23     }else{
24         logger.warn('SigningConfig not found!')
25     }
26 }
27
28 dependencies {
29     compile fileTree(dir: 'libs', include: ['*.jar'])
30     compile 'com.android.support:appcompat-v7:23.0.1'
31 }