blob: 6fb2890a5193ca000f91150a4b38fa9819641fc6 [file] [log] [blame]
Franz Geigerf998afe2017-08-23 12:48:13 +02001apply plugin: 'com.android.application'
2
3android {
4 compileSdkVersion 23
5 buildToolsVersion "23.0.2"
6 defaultConfig {
7 applicationId "com.fairphone.com.fairphone.cameraswapinfo"
8 minSdkVersion 22
9 targetSdkVersion 23
Borjan Tchakaloff6cb03d82017-11-16 21:06:40 +010010 versionCode 10101
11 versionName "1.1.1"
Franz Geigerf998afe2017-08-23 12:48:13 +020012 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
13 }
14 buildTypes {
15 release {
16 minifyEnabled false
17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18 }
19 }
20}
21
22dependencies {
23 compile fileTree(dir: 'libs', include: ['*.jar'])
24 androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
25 exclude group: 'com.android.support', module: 'support-annotations'
26 })
27 compile 'com.android.support:appcompat-v7:23.4.0'
28 testCompile 'junit:junit:4.12'
29}