1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-09-20 00:39:08 -05:00
wulkanowy-mirror/app/build.gradle

293 lines
11 KiB
Groovy
Raw Normal View History

import com.github.triplet.gradle.androidpublisher.ReleaseStatus
import ru.cian.huawei.publish.ReleaseNote
2018-07-14 13:09:58 -05:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlinx-serialization'
2021-04-12 14:43:52 -05:00
apply plugin: 'kotlin-parcelize'
apply plugin: 'com.google.devtools.ksp'
2020-08-02 11:29:41 -05:00
apply plugin: 'dagger.hilt.android.plugin'
2021-08-25 13:49:44 -05:00
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
2018-10-03 14:28:23 -05:00
apply plugin: 'com.github.triplet.play'
apply plugin: 'ru.cian.huawei-publish'
apply plugin: 'com.mikepenz.aboutlibraries.plugin'
2021-03-13 13:13:48 -06:00
apply plugin: 'com.huawei.agconnect'
2023-07-25 04:37:43 -05:00
apply plugin: 'kotlin-kapt'
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 {
namespace 'io.github.wulkanowy'
2023-10-06 03:07:55 -05:00
compileSdk 34
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"
2021-04-03 04:56:07 -05:00
minSdkVersion 21
2023-10-06 03:07:55 -05:00
targetSdkVersion 34
2024-01-14 10:32:41 -06:00
versionCode 144
versionName "2.3.4"
2018-10-20 13:59:46 -05:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2021-01-31 10:12:38 -06:00
resValue "string", "app_name", "Wulkanowy"
2021-10-21 03:51:00 -05:00
manifestPlaceholders = [
firebase_enabled: project.hasProperty("enableFirebase"),
admob_project_id: ""
2021-10-21 03:51:00 -05:00
]
2021-10-21 03:51:00 -05:00
buildConfigField "String", "SINGLE_SUPPORT_AD_ID", "null"
2022-06-26 06:28:35 -05:00
buildConfigField "String", "DASHBOARD_TILE_AD_ID", "null"
2021-10-21 03:51:00 -05:00
if (System.env.SET_BUILD_TIMESTAMP) {
buildConfigField "long", "BUILD_TIMESTAMP", String.valueOf(System.currentTimeMillis())
} else {
buildConfigField "long", "BUILD_TIMESTAMP", "1486235849000"
}
}
sourceSets {
// https://github.com/robolectric/robolectric/issues/3928#issuecomment-395309991
debug.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-15 14:29:57 -06:00
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2018-05-07 12:11:28 -05:00
signingConfig signingConfigs.release
2021-10-13 16:58:24 -05:00
buildConfigField "String", "MESSAGES_BASE_URL", "\"https://messages.wulkanowy.net.pl\""
2023-09-25 12:44:13 -05:00
buildConfigField "String", "SCHOOLS_BASE_URL", '"https://schools.wulkanowy.net.pl"'
2017-03-09 14:29:23 -06:00
}
debug {
minifyEnabled false
shrinkResources false
resValue "string", "app_name", "Wulkanowy DEV"
applicationIdSuffix ".dev"
versionNameSuffix "-dev"
ext.enableCrashlytics = project.hasProperty("enableFirebase")
2021-10-13 16:58:24 -05:00
buildConfigField "String", "MESSAGES_BASE_URL", "\"https://messages.wulkanowy.net.pl\""
2023-09-25 12:44:13 -05:00
buildConfigField "String", "SCHOOLS_BASE_URL", '"https://schools.wulkanowy.net.pl"'
}
2017-03-09 14:29:23 -06:00
}
2018-11-01 13:27:02 -05:00
flavorDimensions += "platform"
2019-08-26 13:54:20 -05:00
2019-06-03 07:12:48 -05:00
productFlavors {
2020-10-29 07:58:56 -05:00
hms {
dimension "platform"
2021-10-21 03:51:00 -05:00
manifestPlaceholders = [install_channel: "AppGallery"]
2020-10-29 07:58:56 -05:00
}
2019-06-03 07:12:48 -05:00
play {
dimension "platform"
2020-10-29 07:58:56 -05:00
manifestPlaceholders = [
install_channel : "Google Play",
admob_project_id: System.getenv("ADMOB_PROJECT_ID") ?: "ca-app-pub-3940256099942544~3347511713"
2020-10-29 07:58:56 -05:00
]
2021-10-21 03:51:00 -05:00
buildConfigField "String", "SINGLE_SUPPORT_AD_ID", "\"${System.getenv("SINGLE_SUPPORT_AD_ID") ?: "ca-app-pub-3940256099942544/5354046379"}\""
2022-06-26 06:28:35 -05:00
buildConfigField "String", "DASHBOARD_TILE_AD_ID", "\"${System.getenv("DASHBOARD_TILE_AD_ID") ?: "ca-app-pub-3940256099942544/6300978111"}\""
2019-06-03 07:12:48 -05:00
}
fdroid {
dimension "platform"
2021-10-21 03:51:00 -05:00
manifestPlaceholders = [install_channel: "F-Droid"]
2019-06-03 07:12:48 -05:00
}
}
playConfigs {
play { enabled.set(true) }
}
buildFeatures {
2021-08-25 13:49:44 -05:00
viewBinding true
buildConfig true
2020-05-01 10:38:19 -05:00
}
bundle {
language {
enableSplit = false
}
}
testOptions {
unitTests.includeAndroidResources = true
// workaround HMS test errors https://github.com/robolectric/robolectric/issues/2750
unitTests.all { jvmArgs '-noverify' }
}
2019-03-10 14:18:40 -05:00
compileOptions {
2020-07-27 04:44:30 -05:00
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
2019-03-10 14:18:40 -05:00
}
2019-08-26 13:54:20 -05:00
2019-09-01 06:24:21 -05:00
kotlinOptions {
jvmTarget = "17"
freeCompilerArgs += ["-opt-in=kotlin.RequiresOptIn", "-Xjvm-default=all"]
2019-09-01 06:24:21 -05:00
}
2019-08-26 13:54:20 -05:00
packagingOptions {
resources {
excludes += ['META-INF/library_release.kotlin_module',
'META-INF/library-core_release.kotlin_module']
}
2019-08-26 13:54:20 -05:00
}
aboutLibraries {
configPath = "app/src/main/res/raw"
}
2017-03-09 14:29:23 -06:00
}
kapt {
correctErrorTypes true
}
ksp {
arg("room.schemaLocation", "$projectDir/schemas".toString())
}
2018-05-07 12:11:28 -05:00
play {
2019-05-15 12:26:25 -05:00
defaultToAppBundles = false
2022-01-01 10:50:02 -06:00
track = 'production'
releaseStatus = ReleaseStatus.IN_PROGRESS
2024-01-03 09:01:30 -06:00
userFraction = 0.99d
2024-01-14 10:32:41 -06:00
updatePriority = 1
enabled.set(false)
2018-05-07 12:11:28 -05:00
}
huaweiPublish {
instances {
hmsRelease {
credentialsPath = "$rootDir/app/src/release/agconnect-credentials.json"
buildFormat = "aab"
deployType = "publish"
releaseNotes = [
new ReleaseNote(
"pl-PL",
"$projectDir/src/main/play/release-notes/pl-PL/default.txt"
)
]
}
}
}
ext {
work_manager = "2.9.0"
android_hilt = "1.1.0"
2023-12-07 16:44:50 -06:00
room = "2.6.1"
chucker = "4.0.0"
mockk = "1.13.9"
coroutines = "1.7.3"
}
2017-03-09 14:29:23 -06:00
dependencies {
implementation 'io.github.wulkanowy:sdk:2.3.7-SNAPSHOT'
2020-07-27 04:44:30 -05:00
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
2018-10-14 15:16:58 -05:00
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines"
2023-10-06 03:07:55 -05:00
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation "androidx.activity:activity-ktx:1.8.2"
implementation "androidx.appcompat:appcompat:1.6.1"
implementation "androidx.fragment:fragment-ktx:1.6.2"
implementation "androidx.annotation:annotation:1.7.1"
2019-06-07 07:12:52 -05:00
implementation "androidx.preference:preference-ktx:1.2.1"
implementation "androidx.recyclerview:recyclerview:1.3.2"
implementation "androidx.viewpager2:viewpager2:1.1.0-beta02"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation "androidx.coordinatorlayout:coordinatorlayout:1.2.0"
implementation "com.google.android.material:material:1.10.0"
2021-09-08 02:13:52 -05:00
implementation "com.github.wulkanowy:material-chips-input:2.3.1"
2019-06-07 07:12:52 -05:00
implementation "com.github.PhilJay:MPAndroidChart:v3.1.0"
implementation 'com.github.lopspower:CircularImageView:4.3.0'
2018-08-25 17:18:31 -05:00
implementation "androidx.work:work-runtime:$work_manager"
playImplementation "androidx.work:work-gcm:$work_manager"
2019-03-24 10:03:51 -05:00
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.7.0"
implementation "androidx.room:room-runtime:$room"
2019-09-01 06:24:21 -05:00
implementation "androidx.room:room-ktx:$room"
ksp "androidx.room:room-compiler:$room"
2020-08-02 11:29:41 -05:00
implementation "com.google.dagger:hilt-android:$hilt_version"
kapt "com.google.dagger:hilt-android-compiler:$hilt_version"
kapt "androidx.hilt:hilt-compiler:$android_hilt"
implementation "androidx.hilt:hilt-work:$android_hilt"
2018-08-25 17:18:31 -05:00
implementation 'com.github.ncapdevi:FragNav:3.3.0'
implementation "com.github.YarikSOffice:lingver:1.3.0"
2018-06-06 12:38:54 -05:00
2021-10-13 16:58:24 -05:00
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation "com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:1.0.0"
implementation "com.squareup.okhttp3:logging-interceptor:4.12.0"
implementation "com.squareup.okhttp3:okhttp-urlconnection:4.12.0"
2021-10-13 16:58:24 -05:00
implementation "com.jakewharton.timber:timber:5.0.1"
implementation 'com.github.Faierbel:slf4j-timber:2.0'
implementation 'com.github.bastienpaulfr:Treessence:1.1.2'
implementation "com.mikepenz:aboutlibraries-core:$about_libraries"
implementation 'io.coil-kt:coil:2.5.0'
2022-12-14 15:41:57 -06:00
implementation "io.github.wulkanowy:AppKillerManager:3.0.1"
implementation 'me.xdrop:fuzzywuzzy:1.4.0'
implementation 'com.fredporciuncula:flow-preferences:1.9.1'
implementation 'org.apache.commons:commons-text:1.11.0'
2018-12-13 17:20:54 -06:00
playImplementation platform('com.google.firebase:firebase-bom:32.7.0')
playImplementation 'com.google.firebase:firebase-analytics'
playImplementation 'com.google.firebase:firebase-messaging'
playImplementation 'com.google.firebase:firebase-crashlytics:'
playImplementation 'com.google.firebase:firebase-config'
playImplementation 'com.google.android.gms:play-services-ads:22.6.0'
playImplementation "com.google.android.play:integrity:1.3.0"
playImplementation 'com.google.android.play:app-update-ktx:2.1.0'
playImplementation 'com.google.android.play:review-ktx:2.0.1'
playImplementation "com.google.android.ump:user-messaging-platform:2.1.0"
2018-01-11 14:57:41 -06:00
hmsImplementation 'com.huawei.hms:hianalytics:6.12.0.300'
hmsImplementation 'com.huawei.agconnect:agconnect-crash:1.9.1.303'
2020-10-29 07:58:56 -05: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"
2021-10-13 16:58:24 -05:00
debugImplementation 'com.github.amitshekhariitbhu.Android-Debug-Database:debug-db:1.0.6'
debugImplementation 'com.github.haroldadmin:WhatTheStack:1.0.0-alpha04'
testImplementation "junit:junit:4.13.2"
testImplementation "io.mockk:mockk:$mockk"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines"
2021-01-29 14:53:46 -06:00
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
2017-11-18 15:17:18 -06:00
testImplementation 'org.robolectric:robolectric:4.11.1'
testImplementation "androidx.test:runner:1.5.2"
2023-01-10 01:28:02 -06:00
testImplementation "androidx.test.ext:junit:1.1.5"
2022-11-14 14:31:02 -06:00
testImplementation "androidx.test:core:1.5.0"
testImplementation "androidx.room:room-testing:$room"
testImplementation "com.google.dagger:hilt-android-testing:$hilt_version"
kaptTest "com.google.dagger:hilt-android-compiler:$hilt_version"
androidTestImplementation "androidx.test:core:1.5.0"
androidTestImplementation "androidx.test:runner:1.5.2"
androidTestImplementation "androidx.test.ext:junit:1.1.5"
androidTestImplementation "io.mockk:mockk-android:$mockk"
2018-07-18 14:13:57 -05:00
androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
2017-03-09 14:29:23 -06:00
}