44 lines
1.3 KiB
Groovy
44 lines
1.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
signingConfigs {
|
|
}
|
|
compileSdkVersion 23
|
|
buildToolsVersion '23.0.1'
|
|
defaultConfig {
|
|
applicationId "com.rubenvandeven.emotionhero"
|
|
minSdkVersion 16
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName '0.1'
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
renderscriptTargetApi 16
|
|
renderscriptSupportModeEnabled true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
}
|
|
|
|
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'
|
|
compile 'com.google.code.gson:gson:2.4'
|
|
compile 'com.android.support:design:23.4.0'
|
|
compile 'com.loopj.android:android-async-http:1.4.9'
|
|
compile 'org.ocpsoft.prettytime:prettytime:4.0.1.Final'
|
|
compile 'io.github.silvaren:easyrs:0.5.3'
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
}
|