emotionhero/app/build.gradle

40 lines
1.2 KiB
Groovy
Raw Normal View History

2016-08-16 19:25:28 +02:00
apply plugin: 'com.android.application'
android {
2016-09-08 01:01:19 +02:00
signingConfigs {
}
2016-08-16 19:25:28 +02:00
compileSdkVersion 23
buildToolsVersion '23.0.1'
defaultConfig {
applicationId "com.rubenvandeven.emotionhero"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
2016-09-08 13:26:11 +02:00
versionName '0.1'
2016-08-16 19:25:28 +02:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
2016-09-08 01:01:19 +02:00
minifyEnabled true
2016-08-16 19:25:28 +02:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2016-09-08 13:26:11 +02:00
productFlavors {
}
2016-08-16 19:25:28 +02:00
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.affectiva.android:affdexsdk:3.1'
2016-08-19 21:47:15 +02:00
compile 'com.google.code.gson:gson:2.4'
compile 'com.android.support:design:23.4.0'
2016-09-01 15:23:30 +02:00
compile 'com.loopj.android:android-async-http:1.4.9'
compile 'org.ocpsoft.prettytime:prettytime:4.0.1.Final'
testCompile 'junit:junit:4.12'
2016-08-16 19:25:28 +02:00
}