apply plugin: 'com.android.application' // This does not break the build when Android Studio is missing the JRebel for Android plugin. apply plugin: 'com.zeroturnaround.jrebel.android' apply plugin: 'com.neenbedankt.android-apt' android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { applicationId "net.headlezz.notificationlogger" minSdkVersion 19 targetSdkVersion 23 versionCode 1 versionName "1.0" } signingConfigs { release { storeFile file("app.keystore") storePassword "capstone" keyAlias "capstone" keyPassword "capstone" } } buildTypes { release { signingConfig signingConfigs.release minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } packagingOptions { exclude 'META-INF/services/javax.annotation.processing.Processor' } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:design:23.1.1' compile 'com.android.support:recyclerview-v7:23.1.1' compile 'com.android.support:preference-v7:23.1.1' compile 'com.squareup:javapoet:1.2.0' compile 'ckm.simple:simple_sql_provider_annotation:1.0.6' compile 'ckm.simple:simple_sql_provider_processor:1.0.6' compile 'com.jakewharton:butterknife:7.0.1' compile 'com.google.code.gson:gson:2.5' compile 'com.jakewharton.timber:timber:4.1.0' compile('com.mikepenz:aboutlibraries:5.3.6@aar') { transitive = true } }