1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-20 23:51:40 +02:00
Frost-for-Facebook/app/build.gradle

118 lines
4.6 KiB
Groovy
Raw Normal View History

2017-05-30 00:05:26 +02:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdkVersion Integer.parseInt(project.TARGET_SDK)
buildToolsVersion project.BUILD_TOOLS
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)
versionCode Integer.parseInt(project.VERSION_CODE)
versionName project.VERSION_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,
"${project.APP_ID}-v${variant.versionName}.apk")
}
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
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
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
2017-06-01 02:11:46 +02:00
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
2017-05-30 00:05:26 +02:00
compile "com.android.support:appcompat-v7:${ANDROID_SUPPORT_LIBS}"
compile "com.android.support:support-v4:${ANDROID_SUPPORT_LIBS}"
compile "com.android.support:support-v13:${ANDROID_SUPPORT_LIBS}"
compile "com.android.support:design:${ANDROID_SUPPORT_LIBS}"
compile "com.android.support:recyclerview-v7:${ANDROID_SUPPORT_LIBS}"
compile "com.android.support:cardview-v7:${ANDROID_SUPPORT_LIBS}"
compile "com.android.support:preference-v14:${ANDROID_SUPPORT_LIBS}"
//Logging
compile "com.jakewharton.timber:timber:${TIMBER}"
//Dialog
compile "com.afollestad.material-dialogs:core:${MD}"
2017-05-31 02:26:14 +02:00
compile "com.github.Raizlabs.DBFlow:dbflow:${DBFLOW}"
compile "com.github.Raizlabs.DBFlow:dbflow-core:${DBFLOW}"
annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}"
kapt "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}"
compile "com.github.Raizlabs.DBFlow:dbflow-kotlinextensions:${DBFLOW}"
compile "com.github.Raizlabs.DBFlow:dbflow-rx2:${DBFLOW}"
compile "com.github.Raizlabs.DBFlow:dbflow-rx2-kotlinextensions:${DBFLOW}"
compile "com.github.Raizlabs.DBFlow:dbflow-sqlcipher:${DBFLOW}"
compile "net.zetetic:android-database-sqlcipher:${SQL_CIPHER}@aar"
testCompile "org.robolectric:robolectric:${ROBOELECTRIC}"
2017-05-30 00:05:26 +02:00
//Icons
compile "com.mikepenz:iconics-core:${ICONICS}@aar"
2017-05-30 04:47:52 +02:00
compile "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar"
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
//Butterknife
compile "com.jakewharton:butterknife:${BUTTERKNIFE}"
annotationProcessor "com.jakewharton:butterknife-compiler:${BUTTERKNIFE}"
compile "io.reactivex.rxjava2:rxjava:${RX_JAVA}"
compile "io.reactivex.rxjava2:rxandroid:${RX_ANDROID}"
compile "com.jakewharton.rxbinding2:rxbinding:${RX_BINDING}"
compile "com.jakewharton.rxbinding2:rxbinding-appcompat-v7:${RX_BINDING}"
2017-06-01 02:11:46 +02:00
compile "org.greenrobot:eventbus:${EVENT_BUS}"
2017-05-30 00:05:26 +02:00
compile "com.facebook.stetho:stetho-okhttp3:${STETHO}"
2017-05-30 04:47:52 +02:00
compile "com.lapism:searchview:${SEARCH_VIEW}"
compile "org.jsoup:jsoup:${JSOUP}"
compile "com.facebook.android:facebook-android-sdk:${FB_SDK}"
compile "org.jetbrains.anko:anko:${ANKO}"
compile "com.squareup.retrofit2:retrofit:${RETROFIT}"
compile "com.squareup.retrofit2:adapter-rxjava2:${RETROFIT}"
compile "com.squareup.retrofit2:converter-gson:${RETROFIT}"
compile "com.squareup.okhttp3:logging-interceptor:${OKHTTP_INTERCEPTOR}"
2017-05-30 00:05:26 +02:00
compile "com.github.bumptech.glide:glide:${GLIDE}"
annotationProcessor "com.github.bumptech.glide:compiler:${GLIDE}"
2017-05-31 02:26:14 +02:00
compile "com.google.auto.value:auto-value:${AUTO}"
annotationProcessor "com.google.auto.value:auto-value:${AUTO}"
annotationProcessor "com.ryanharter.auto.value:auto-value-parcel:${AUTO_VALUE_PARCEL}"
2017-06-01 02:11:46 +02:00
compile "com.f2prateek.rx.preferences2:rx-preferences:${RX_PREFS}"
2017-05-31 02:26:14 +02:00
}
kapt {
generateStubs = true
2017-05-30 00:05:26 +02:00
}