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