apply plugin: 'com.android.application' android { signingConfigs { } compileSdkVersion 24 buildToolsVersion '25.0.0' defaultConfig { applicationId 'com.rubenvandeven.emotion_hero' minSdkVersion 16 targetSdkVersion 24 versionCode 11 versionName '1.2' testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" renderscriptTargetApi 16 renderscriptSupportModeEnabled true } buildTypes { release { minifyEnabled false 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:24.2.0' compile 'com.android.support:support-v4:24.2.0' compile 'com.affectiva.android:affdexsdk:3.1.2' compile 'com.google.code.gson:gson:2.4' compile 'com.android.support:design:24.2.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' }