2017-07-02 19:36:38 +02:00
|
|
|
plugins {
|
|
|
|
id 'com.gladed.androidgitversion' version '0.3.4'
|
|
|
|
}
|
|
|
|
|
2017-05-30 00:05:26 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
2017-06-29 19:12:18 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2017-06-04 06:34:17 +02:00
|
|
|
apply plugin: 'io.fabric'
|
2017-07-03 02:24:17 +02:00
|
|
|
apply plugin: 'com.github.triplet.play'
|
2017-05-30 00:05:26 +02:00
|
|
|
|
2017-07-03 04:55:52 +02:00
|
|
|
play {
|
|
|
|
jsonFile = file('../files/gplay-keys.json')
|
2017-07-17 05:23:42 +02:00
|
|
|
track = 'beta'
|
2017-07-06 08:52:18 +02:00
|
|
|
errorOnSizeLimit = true
|
2017-07-03 04:55:52 +02:00
|
|
|
uploadImages = false
|
|
|
|
untrackOld = true
|
|
|
|
}
|
|
|
|
|
2017-05-30 00:05:26 +02:00
|
|
|
android {
|
|
|
|
compileSdkVersion Integer.parseInt(project.TARGET_SDK)
|
|
|
|
buildToolsVersion project.BUILD_TOOLS
|
|
|
|
|
2017-07-02 20:57:57 +02:00
|
|
|
androidGitVersion {
|
2017-07-06 08:52:18 +02:00
|
|
|
codeFormat = 'MMNNPPBB'
|
2017-07-03 22:57:00 +02:00
|
|
|
format = '%tag%%.count%%-commit%'
|
2017-07-02 20:57:57 +02:00
|
|
|
prefix 'v'
|
|
|
|
}
|
|
|
|
|
2017-05-30 00:05:26 +02:00
|
|
|
defaultConfig {
|
2017-05-31 02:26:14 +02:00
|
|
|
applicationId "${project.APP_GROUP}." + project.APP_ID.toLowerCase()
|
2017-05-30 00:05:26 +02:00
|
|
|
minSdkVersion Integer.parseInt(project.MIN_SDK)
|
|
|
|
targetSdkVersion Integer.parseInt(project.TARGET_SDK)
|
2017-07-02 19:36:38 +02:00
|
|
|
versionCode androidGitVersion.code()
|
|
|
|
versionName androidGitVersion.name()
|
2017-05-30 04:47:52 +02:00
|
|
|
multiDexEnabled true
|
2017-05-30 00:05:26 +02:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
applicationVariants.all { variant ->
|
|
|
|
variant.outputs.each { output ->
|
|
|
|
output.outputFile = new File(output.outputFile.parent,
|
2017-06-02 03:09:43 +02:00
|
|
|
"${project.APP_ID}-${variant.buildType.name}.apk")
|
2017-05-30 00:05:26 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-02 03:09:43 +02:00
|
|
|
|
|
|
|
signingConfigs {
|
2017-07-03 02:24:17 +02:00
|
|
|
|
|
|
|
def releaseProps = new Properties()
|
|
|
|
file("../files/play.properties").withInputStream { releaseProps.load(it) }
|
|
|
|
|
|
|
|
release {
|
|
|
|
storeFile file("../files/play.keystore")
|
|
|
|
storePassword releaseProps.getProperty('storePassword')
|
|
|
|
keyAlias releaseProps.getProperty('keyAlias')
|
|
|
|
keyPassword releaseProps.getProperty('keyPassword')
|
|
|
|
}
|
|
|
|
|
2017-06-02 03:09:43 +02:00
|
|
|
test {
|
|
|
|
storeFile file("../files/test.keystore")
|
|
|
|
storePassword "testkey"
|
|
|
|
keyAlias "testKey"
|
|
|
|
keyPassword "testkey"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-30 00:05:26 +02:00
|
|
|
buildTypes {
|
2017-06-02 03:09:43 +02:00
|
|
|
debug {
|
2017-06-04 07:24:19 +02:00
|
|
|
minifyEnabled false
|
|
|
|
shrinkResources false
|
2017-06-02 03:09:43 +02:00
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
versionNameSuffix "-debug"
|
|
|
|
resValue "string", "app_name", "Frost Debug"
|
2017-06-21 00:50:08 +02:00
|
|
|
resValue "string", "frost_web", "Frost Web Debug"
|
2017-07-17 21:38:42 +02:00
|
|
|
ext.enableCrashlytics = false
|
2017-06-02 03:09:43 +02:00
|
|
|
}
|
|
|
|
releaseTest {
|
2017-06-04 08:03:23 +02:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2017-06-02 03:09:43 +02:00
|
|
|
applicationIdSuffix ".test"
|
|
|
|
signingConfig signingConfigs.test
|
|
|
|
versionNameSuffix "-test"
|
|
|
|
resValue "string", "app_name", "Frost Test"
|
2017-06-21 00:50:08 +02:00
|
|
|
resValue "string", "frost_web", "Frost Web Test"
|
2017-06-02 03:09:43 +02:00
|
|
|
}
|
2017-05-30 00:05:26 +02:00
|
|
|
release {
|
2017-07-01 07:50:58 +02:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
2017-05-30 00:05:26 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2017-07-03 02:24:17 +02:00
|
|
|
signingConfig signingConfigs.release
|
2017-06-02 03:09:43 +02:00
|
|
|
resValue "string", "app_name", "Frost"
|
2017-06-21 00:50:08 +02:00
|
|
|
resValue "string", "frost_web", "Frost Web"
|
2017-05-30 00:05:26 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-02 03:09:43 +02:00
|
|
|
|
2017-05-30 00:05:26 +02:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
2017-06-01 02:11:46 +02:00
|
|
|
test.java.srcDirs += 'src/test/kotlin'
|
2017-05-30 00:05:26 +02:00
|
|
|
}
|
2017-06-13 01:51:27 +02:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
pickFirst 'META-INF/library_release.kotlin_module'
|
|
|
|
}
|
2017-05-30 00:05:26 +02:00
|
|
|
}
|
|
|
|
|
2017-06-26 06:11:15 +02:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
maven { url 'https://maven.google.com' }
|
|
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
|
|
}
|
|
|
|
|
2017-05-30 00:05:26 +02:00
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2017-06-27 00:04:46 +02:00
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.3-alpha', {
|
2017-05-30 00:05:26 +02:00
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
|
|
|
testCompile 'junit:junit:4.12'
|
2017-07-08 09:03:55 +02:00
|
|
|
testCompile "org.robolectric:robolectric:${ROBOELECTRIC}"
|
|
|
|
|
2017-07-13 22:50:00 +02:00
|
|
|
compile "ca.allanwang.kau:about:$KAU"
|
|
|
|
compile "ca.allanwang.kau:colorpicker:$KAU"
|
|
|
|
// compile "ca.allanwang.kau:imagepicker:$KAU"
|
|
|
|
compile "ca.allanwang.kau:kpref-activity:$KAU"
|
|
|
|
compile "ca.allanwang.kau:searchview:$KAU"
|
2017-06-13 01:51:27 +02:00
|
|
|
|
2017-06-29 19:15:54 +02:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN}"
|
|
|
|
testCompile "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"
|
2017-05-30 00:05:26 +02:00
|
|
|
|
2017-06-04 09:19:58 +02:00
|
|
|
debugCompile "com.squareup.leakcanary:leakcanary-android:${LEAK_CANARY}"
|
2017-06-04 20:15:37 +02:00
|
|
|
releaseTestCompile "com.squareup.leakcanary:leakcanary-android-no-op:${LEAK_CANARY}"
|
2017-06-04 09:19:58 +02:00
|
|
|
releaseCompile "com.squareup.leakcanary:leakcanary-android-no-op:${LEAK_CANARY}"
|
|
|
|
testCompile "com.squareup.leakcanary:leakcanary-android-no-op:${LEAK_CANARY}"
|
|
|
|
|
2017-05-31 02:26:14 +02:00
|
|
|
compile "com.github.Raizlabs.DBFlow:dbflow:${DBFLOW}"
|
|
|
|
compile "com.github.Raizlabs.DBFlow:dbflow-core:${DBFLOW}"
|
|
|
|
kapt "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}"
|
2017-06-22 08:45:38 +02:00
|
|
|
compile "com.github.Raizlabs.DBFlow:dbflow-kotlinextensions:${DBFLOW}"
|
2017-06-26 23:54:07 +02:00
|
|
|
|
2017-05-30 00:05:26 +02:00
|
|
|
//Icons
|
2017-05-30 04:47:52 +02:00
|
|
|
compile "com.mikepenz:material-design-iconic-typeface:${IICON_MATERIAL}@aar"
|
|
|
|
compile "com.mikepenz:community-material-typeface:${IICON_COMMUNITY}@aar"
|
2017-05-30 00:05:26 +02:00
|
|
|
|
2017-05-30 10:03:01 +02:00
|
|
|
compile "org.jsoup:jsoup:${JSOUP}"
|
|
|
|
|
2017-07-17 02:26:58 +02:00
|
|
|
compile "com.squareup.okhttp3:okhttp:${OKHTTP}"
|
|
|
|
|
2017-05-30 00:05:26 +02:00
|
|
|
compile "com.github.bumptech.glide:glide:${GLIDE}"
|
2017-06-29 19:12:18 +02:00
|
|
|
kapt "com.github.bumptech.glide:compiler:${GLIDE}"
|
2017-05-31 02:26:14 +02:00
|
|
|
|
2017-06-27 20:45:57 +02:00
|
|
|
// compile("com.mikepenz:materialdrawer:${MATERIAL_DRAWER}@aar") {
|
|
|
|
// transitive = true
|
|
|
|
// }
|
2017-06-29 19:12:18 +02:00
|
|
|
compile "co.zsmb:materialdrawer-kt:${MATERIAL_DRAWER_KT}"
|
2017-06-03 09:22:10 +02:00
|
|
|
|
2017-06-29 19:12:18 +02:00
|
|
|
compile "nz.bradcampbell:paperparcel:${PAPER_PARCEL}"
|
|
|
|
compile "nz.bradcampbell:paperparcel-kotlin:${PAPER_PARCEL}"
|
|
|
|
kapt "nz.bradcampbell:paperparcel-compiler:${PAPER_PARCEL}"
|
2017-06-02 02:45:42 +02:00
|
|
|
|
2017-06-04 06:34:17 +02:00
|
|
|
compile("com.crashlytics.sdk.android:crashlytics:${CRASHLYTICS}@aar") {
|
|
|
|
transitive = true;
|
|
|
|
}
|
2017-07-17 02:26:58 +02:00
|
|
|
|
|
|
|
compile "com.davemorrissey.labs:subsampling-scale-image-view:${SCALE_IMAGE_VIEW}"
|
|
|
|
|
|
|
|
compile "com.sothree.slidinguppanel:library:${SLIDING_PANEL}"
|
2017-07-02 20:57:57 +02:00
|
|
|
}
|