53 lines
1.5 KiB
Groovy
53 lines
1.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "net.headlezz.notificationlogger"
|
|
minSdkVersion 18
|
|
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'
|
|
}
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.neenbedankt.android-apt'
|
|
|
|
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.squareup.picasso:picasso:2.5.2'
|
|
compile('com.mikepenz:aboutlibraries:5.3.6@aar') {
|
|
transitive = true
|
|
}
|
|
}
|