11plugins {
2- id ' com.android.application'
3- id ' kotlin-android'
4- // id ' com.google.gms.google-services'
5- // id ' com.google.firebase.crashlytics'
2+ id " com.android.application"
3+ id " kotlin-android"
4+ // id " com.google.gms.google-services"
5+ // id " com.google.firebase.crashlytics"
66}
77
88if (useFirebase() == " true" ) {
9- apply plugin : ' com.google.gms.google-services'
10- apply plugin : ' com.google.firebase.crashlytics'
9+ apply plugin : " com.google.gms.google-services"
10+ apply plugin : " com.google.firebase.crashlytics"
1111}
1212
1313android {
14- namespace ' info.hannes.logcat.app'
15- testNamespace ' info.hannes.logcat.sampletest'
14+ namespace " info.hannes.logcat.app"
15+ testNamespace " info.hannes.logcat.sampletest"
1616
1717 defaultConfig {
18- applicationId ' info.hannes.logcat.sample'
18+ applicationId " info.hannes.logcat.sample"
1919 versionCode 1
2020 versionName " 1.0"
2121
2222 minSdkVersion 21
2323 compileSdk propCompileSdkVersion
2424 targetSdkVersion 35
2525
26- buildConfigField " boolean" , ' WITH_FIREBASE' , useFirebase()
26+ buildConfigField " boolean" , " WITH_FIREBASE" , useFirebase()
2727
2828 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
29- testInstrumentationRunnerArguments useTestStorageService : ' true'
29+ testInstrumentationRunnerArguments useTestStorageService : " true"
3030 }
3131
3232 buildFeatures {
@@ -43,7 +43,7 @@ android {
4343 }
4444 packagingOptions {
4545 resources {
46- pickFirsts + = [' META-INF/atomicfu.kotlin_module' ]
46+ pickFirsts + = [" META-INF/atomicfu.kotlin_module" ]
4747 }
4848 }
4949
@@ -54,16 +54,16 @@ android {
5454}
5555
5656dependencies {
57- implementation project(' :LogcatCoreLib' )
58- implementation project(' :LogcatCoreUI' )
59- implementation project(' :LogcatCrashlyticLib' )
60- implementation project(' :LogcatCountlyLib' )
61- implementation ' androidx.legacy:legacy-support-v4:1.0.0'
57+ implementation project(" :LogcatCoreLib" )
58+ implementation project(" :LogcatCoreUI" )
59+ implementation project(" :LogcatCrashlyticLib" )
60+ implementation project(" :LogcatCountlyLib" )
61+ implementation " androidx.legacy:legacy-support-v4:1.0.0"
6262 implementation " androidx.appcompat:appcompat:1.7.0"
6363 implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
6464 implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1"
6565
66- androidTestImplementation ' com.github.AppDevNext:Moka:1.6'
66+ androidTestImplementation " com.github.AppDevNext:Moka:1.6"
6767 androidTestImplementation " androidx.test.ext:junit-ktx:1.1.5"
6868 androidTestUtil " androidx.test.services:test-services:1.5.0"
6969 androidTestImplementation " androidx.test.espresso:espresso-core:3.5.1"
0 commit comments