wulkanowy-mod/app/build.gradle

216 lines
7.8 KiB
Groovy
Raw Normal View History

2018-07-14 13:09:58 -05:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
2018-10-03 14:28:23 -05:00
apply plugin: 'kotlin-kapt'
2018-08-22 15:31:17 -05:00
apply plugin: 'kotlin-android-extensions'
2018-07-14 13:09:58 -05:00
apply plugin: 'io.fabric'
2018-10-03 14:28:23 -05:00
apply plugin: 'com.github.triplet.play'
apply plugin: 'com.mikepenz.aboutlibraries.plugin'
2018-07-14 13:09:58 -05:00
apply from: 'jacoco.gradle'
2018-08-25 17:18:31 -05:00
apply from: 'sonarqube.gradle'
2019-06-03 18:53:20 -05:00
apply from: 'hooks.gradle'
2018-07-14 13:09:58 -05:00
2017-03-09 14:29:23 -06:00
android {
2019-09-12 09:36:32 -05:00
compileSdkVersion 29
2020-02-28 19:37:58 -06:00
buildToolsVersion '29.0.3'
2018-05-07 12:11:28 -05:00
2017-03-09 14:29:23 -06:00
defaultConfig {
2017-04-19 13:36:27 -05:00
applicationId "io.github.wulkanowy"
testApplicationId "io.github.tests.wulkanowy"
2020-02-22 14:24:06 -06:00
minSdkVersion 17
2019-09-12 09:36:32 -05:00
targetSdkVersion 29
2020-03-05 02:20:46 -06:00
versionCode 53
versionName "0.16.0"
2018-08-22 15:31:17 -05:00
multiDexEnabled true
2018-10-20 13:59:46 -05:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
2018-12-18 09:12:15 -06:00
manifestPlaceholders = [
2019-04-18 09:38:49 -05:00
fabric_api_key : System.getenv("FABRIC_API_KEY") ?: "null",
2018-12-18 09:12:15 -06:00
crashlytics_enabled: project.hasProperty("enableCrashlytics")
]
javaCompileOptions {
annotationProcessorOptions {
2019-10-03 07:00:07 -05:00
arguments = [
"room.schemaLocation": "$projectDir/schemas".toString(),
"room.incremental" : "true"
]
}
}
}
sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
2017-03-09 14:29:23 -06:00
}
2017-12-27 14:49:09 -06:00
2018-05-07 12:11:28 -05:00
signingConfigs {
release {
storeFile file("upload-key.jks")
storePassword System.getenv("PLAY_STORE_PASSWORD")
keyAlias System.getenv("PLAY_KEY_ALIAS")
keyPassword System.getenv("PLAY_KEY_PASSWORD")
}
}
2017-03-09 14:29:23 -06:00
buildTypes {
release {
2018-12-13 17:20:54 -06:00
buildConfigField "boolean", "CRASHLYTICS_ENABLED", "true"
2018-12-15 14:29:57 -06:00
minifyEnabled true
shrinkResources true
2017-03-09 14:29:23 -06:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2018-05-07 12:11:28 -05:00
signingConfig signingConfigs.release
2017-03-09 14:29:23 -06:00
}
debug {
2018-12-13 17:20:54 -06:00
buildConfigField "boolean", "CRASHLYTICS_ENABLED", project.hasProperty("enableCrashlytics") ? "true" : "false"
applicationIdSuffix ".dev"
versionNameSuffix "-dev"
testCoverageEnabled = project.hasProperty('coverage')
2018-12-13 17:20:54 -06:00
ext.enableCrashlytics = project.hasProperty("enableCrashlytics")
}
2017-03-09 14:29:23 -06:00
}
2018-11-01 13:27:02 -05:00
2019-06-03 07:12:48 -05:00
flavorDimensions "platform"
2019-08-26 13:54:20 -05:00
2019-06-03 07:12:48 -05:00
productFlavors {
play {
dimension "platform"
}
fdroid {
buildConfigField "boolean", "CRASHLYTICS_ENABLED", "false"
dimension "platform"
}
}
2018-11-01 13:27:02 -05:00
lintOptions {
disable 'HardwareIds'
}
2019-03-10 14:18:40 -05:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2019-08-26 13:54:20 -05:00
2019-09-01 06:24:21 -05:00
kotlinOptions {
jvmTarget = "1.8"
}
2019-08-26 13:54:20 -05:00
packagingOptions {
exclude 'META-INF/library_release.kotlin_module'
exclude 'META-INF/library-core_release.kotlin_module'
}
aboutLibraries {
configPath = "app/src/main/res/raw"
}
2017-03-09 14:29:23 -06:00
}
2018-08-22 15:31:17 -05:00
androidExtensions {
experimental = true
}
2018-05-07 12:11:28 -05:00
play {
serviceAccountEmail = System.getenv("PLAY_SERVICE_ACCOUNT_EMAIL") ?: "jan@fakelog.cf"
serviceAccountCredentials = file('key.p12')
2019-05-15 12:26:25 -05:00
defaultToAppBundles = false
2018-05-07 12:11:28 -05:00
track = 'alpha'
}
ext {
work_manager = "2.3.4"
2020-03-24 17:04:25 -05:00
room = "2.2.5"
2020-03-14 17:19:47 -05:00
dagger = "2.27"
// don't update https://github.com/ChuckerTeam/chucker/issues/242
chucker = "3.2.0"
mockk = "1.9.2"
}
2019-08-26 13:54:20 -05:00
configurations.all {
resolutionStrategy.force "androidx.constraintlayout:constraintlayout:1.1.3"
}
2017-03-09 14:29:23 -06:00
dependencies {
implementation "io.github.wulkanowy:sdk:0cf724a"
2018-10-14 15:16:58 -05:00
2019-04-18 09:38:49 -05:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "androidx.core:core-ktx:1.2.0"
implementation "androidx.activity:activity-ktx:1.1.0"
implementation "androidx.appcompat:appcompat:1.2.0-beta01"
2019-09-06 19:23:44 -05:00
implementation "androidx.appcompat:appcompat-resources:1.1.0"
implementation "androidx.fragment:fragment-ktx:1.2.4"
2019-06-07 07:12:52 -05:00
implementation "androidx.annotation:annotation:1.1.0"
implementation "androidx.multidex:multidex:2.0.1"
2019-09-06 19:23:44 -05:00
implementation "androidx.preference:preference-ktx:1.1.0"
implementation "androidx.recyclerview:recyclerview:1.1.0"
2019-06-07 07:12:52 -05:00
implementation "androidx.viewpager:viewpager:1.0.0"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-beta01"
2019-06-07 07:12:52 -05:00
implementation "androidx.constraintlayout:constraintlayout:1.1.3"
implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
implementation "com.google.android.material:material:1.1.0"
2019-08-26 13:54:20 -05:00
implementation "com.github.wulkanowy:material-chips-input:2.0.1"
2019-06-07 07:12:52 -05:00
implementation "com.github.PhilJay:MPAndroidChart:v3.1.0"
2019-08-26 13:54:20 -05:00
implementation "me.zhanghai.android.materialprogressbar:library:1.6.1"
2018-08-25 17:18:31 -05:00
2019-09-01 06:24:21 -05:00
implementation "androidx.work:work-runtime-ktx:$work_manager"
implementation "androidx.work:work-rxjava2:$work_manager"
2019-09-01 06:24:21 -05:00
implementation "androidx.work:work-gcm:$work_manager"
2019-03-24 10:03:51 -05:00
implementation 'com.github.PaulinaSadowska:RxWorkManagerObservers:1.0.0'
implementation "androidx.room:room-runtime:$room"
implementation "androidx.room:room-rxjava2:$room"
2019-09-01 06:24:21 -05:00
implementation "androidx.room:room-ktx:$room"
kapt "androidx.room:room-compiler:$room"
implementation "com.google.dagger:dagger-android-support:$dagger"
kapt "com.google.dagger:dagger-compiler:$dagger"
kapt "com.google.dagger:dagger-android-processor:$dagger"
implementation "com.squareup.inject:assisted-inject-annotations-dagger2:0.5.2"
kapt "com.squareup.inject:assisted-inject-processor-dagger2:0.5.2"
2018-08-25 17:18:31 -05:00
2018-10-20 13:59:46 -05:00
implementation "eu.davidea:flexible-adapter:5.1.0"
implementation "eu.davidea:flexible-adapter-ui:1.0.0"
2019-01-20 08:00:33 -06:00
implementation "com.aurelhubert:ahbottomnavigation:2.3.4"
implementation "com.ncapdevi:frag-nav:3.3.0"
2020-04-02 15:43:03 -05:00
implementation "com.github.YarikSOffice:lingver:1.2.1"
2018-06-06 12:38:54 -05:00
implementation "com.github.pwittchen:reactivenetwork-rx2:3.0.6"
2019-06-07 07:12:52 -05:00
implementation "io.reactivex.rxjava2:rxandroid:2.1.1"
implementation "io.reactivex.rxjava2:rxjava:2.2.19"
2018-08-25 17:18:31 -05:00
2019-10-06 15:15:53 -05:00
implementation "com.google.code.gson:gson:2.8.6"
implementation "com.jakewharton.threetenabp:threetenabp:1.2.3"
2018-08-25 17:18:31 -05:00
implementation "com.jakewharton.timber:timber:4.7.1"
implementation "at.favre.lib:slf4j-timber:1.0.1"
2020-02-26 17:10:11 -06:00
implementation "fr.bipi.treessence:treessence:0.3.2"
implementation "com.mikepenz:aboutlibraries-core:$about_libraries"
implementation 'com.wdullaer:materialdatetimepicker:4.2.3'
2020-04-02 15:43:03 -05:00
implementation "io.coil-kt:coil:0.9.5"
2018-12-13 17:20:54 -06:00
2020-04-02 15:43:03 -05:00
playImplementation 'com.google.firebase:firebase-analytics:17.3.0'
playImplementation 'com.google.firebase:firebase-inappmessaging-display-ktx:19.0.4'
playImplementation "com.google.firebase:firebase-inappmessaging-ktx:19.0.4"
playImplementation "com.google.firebase:firebase-messaging:20.1.0"
2019-06-07 07:12:52 -05:00
playImplementation "com.crashlytics.sdk.android:crashlytics:2.10.1"
2020-04-02 15:43:03 -05:00
playImplementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'
2018-01-11 14:57:41 -06:00
releaseImplementation "com.github.ChuckerTeam.Chucker:library-no-op:$chucker"
2019-01-10 10:10:10 -06:00
debugImplementation "com.github.ChuckerTeam.Chucker:library:$chucker"
2019-03-10 14:18:40 -05:00
debugImplementation "com.amitshekhar.android:debug-db:1.0.6"
2020-01-08 17:25:02 -06:00
testImplementation "junit:junit:4.13"
testImplementation "io.mockk:mockk:$mockk"
testImplementation "org.threeten:threetenbp:1.4.3"
testImplementation "org.mockito:mockito-inline:3.3.3"
2017-11-18 15:17:18 -06:00
2019-06-07 07:12:52 -05:00
androidTestImplementation "androidx.test:core:1.2.0"
androidTestImplementation "androidx.test:runner:1.2.0"
androidTestImplementation "androidx.test.ext:junit:1.1.1"
androidTestImplementation "io.mockk:mockk-android:$mockk"
androidTestImplementation "androidx.room:room-testing:$room"
2018-07-18 14:13:57 -05:00
androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
androidTestImplementation "org.mockito:mockito-android:3.3.3"
2017-03-09 14:29:23 -06:00
}
2018-12-13 17:20:54 -06:00
apply plugin: 'com.google.gms.google-services'