blob: 567276b42e9f5e9e2c697ab0ff0bb2e8396f5eab [file] [log] [blame]
Maarten Derksdb352f32016-07-15 17:32:05 +02001apply plugin: 'com.android.application'
2
3android {
Maarten Derksb8839952017-02-10 17:08:08 +01004 compileSdkVersion 23
Dirk Vogt707feff2016-07-21 12:01:03 +02005 buildToolsVersion '22.0.1'
Maarten Derksdb352f32016-07-15 17:32:05 +02006 defaultConfig {
7 applicationId "com.fairphone.psensor"
8 minSdkVersion 22
Maarten Derks74b50092017-02-10 17:05:30 +01009 targetSdkVersion 23
Borjan Tchakaloffaf2c7772017-11-16 17:21:03 +010010 versionCode 20203
11 versionName "2.2.3"
Maarten Derksdb352f32016-07-15 17:32:05 +020012 }
13 buildTypes {
14 release {
15 minifyEnabled false
16 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17 }
18 debug {
Borjan Tchakaloff7a4e3df2016-08-30 16:59:51 +020019 minifyEnabled false
Maarten Derksdb352f32016-07-15 17:32:05 +020020 }
21 }
Dirk Vogt707feff2016-07-21 12:01:03 +020022 productFlavors {
23 }
Borjan Tchakaloff30b1a812016-12-01 15:10:27 +010024 lintOptions {
25 checkReleaseBuilds false
26 // Or, if you prefer, you can continue to check for errors in release builds,
27 // but continue the build even when errors are found:
28 abortOnError false
29 }
Maarten Derksdb352f32016-07-15 17:32:05 +020030}
31
32dependencies {
33 compile fileTree(include: ['*.jar'], dir: 'libs')
34 testCompile 'junit:junit:4.12'
Maarten Derks431086a2017-02-10 17:07:16 +010035 compile 'com.android.support:support-v13:23.4.0'
36 compile 'com.android.support:support-v4:23.4.0'
Maarten Derksdb352f32016-07-15 17:32:05 +020037}