emotionhero/app/build.gradle

44 lines
1.3 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 {
}
compileSdkVersion 24
2017-09-20 08:38:15 +02:00
buildToolsVersion '25.0.0'
2016-08-16 19:25:28 +02:00
defaultConfig {
2016-10-05 15:25:05 +02:00
applicationId 'com.rubenvandeven.emotion_hero.kiosk'
2016-08-16 19:25:28 +02:00
minSdkVersion 16
targetSdkVersion 24
2017-09-20 08:38:15 +02:00
versionCode 11
versionName '1.2'
2016-08-16 19:25:28 +02:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2016-09-09 14:00:41 +02:00
renderscriptTargetApi 16
renderscriptSupportModeEnabled true
2016-08-16 19:25:28 +02:00
}
buildTypes {
release {
minifyEnabled false
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:24.2.0'
compile 'com.android.support:support-v4:24.2.0'
compile 'com.affectiva.android:affdexsdk:3.2'
2016-08-19 21:47:15 +02:00
compile 'com.google.code.gson:gson:2.4'
compile 'com.android.support:design:24.2.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'
2016-09-09 14:00:41 +02:00
compile 'io.github.silvaren:easyrs:0.5.3'
testCompile 'junit:junit:4.12'
2016-08-16 19:25:28 +02:00
}