@@ -2,6 +2,7 @@ apply plugin: 'com.android.application'
22apply plugin : ' org.jetbrains.kotlin.android'
33apply plugin : ' kotlin-kapt'
44
5+
56def enablePlayRelease = System . getenv(' ENABLE_PLAY_RELEASE' )?. toBoolean() ?: false
67
78def myStoreFile = System . getenv(' STORE_FILE' )
@@ -75,6 +76,9 @@ android {
7576 abortOnError false
7677 disable ' ExpiredTargetSdkVersion' , ' ExpiringTargetSdkVersion'
7778 }
79+ buildFeatures {
80+ buildConfig true
81+ }
7882 configurations. configureEach {
7983 resolutionStrategy. force ' androidx.appcompat:appcompat:1.6.1'
8084 }
@@ -84,7 +88,7 @@ dependencies {
8488 implementation fileTree(dir : ' libs' , include : [' *.jar' ])
8589 // noinspection GradleCompatible
8690 implementation ' androidx.core:core-ktx:1.13.1'
87- implementation " androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.2 "
91+ implementation " androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4 "
8892 implementation ' androidx.appcompat:appcompat:1.7.0'
8993 implementation ' androidx.constraintlayout:constraintlayout:2.1.4'
9094 implementation ' androidx.recyclerview:recyclerview:1.3.2'
@@ -97,7 +101,7 @@ dependencies {
97101 implementation ' com.google.code.gson:gson:2.10.1'
98102 implementation ' androidx.lifecycle:lifecycle-extensions:2.2.0'
99103 implementation ' androidx.room:room-runtime:2.6.1'
100- implementation ' androidx.test.ext:junit:1.1.5 '
104+ implementation ' androidx.test.ext:junit:1.2.1 '
101105 annotationProcessor ' androidx.room:room-compiler:2.6.1'
102106 implementation " androidx.room:room-ktx:2.6.1"
103107 kapt " androidx.room:room-compiler:2.6.1"
@@ -114,11 +118,11 @@ dependencies {
114118 exclude group : ' com.android.support' , module : ' support-core-utils'
115119 exclude group : ' com.android.support' , module : ' exifinterface'
116120 }
117- playImplementation ' com.google.android.gms:play-services-ads:23.1 .0'
118- playImplementation ' com.google.android.ump:user-messaging-platform:2.2 .0'
121+ playImplementation ' com.google.android.gms:play-services-ads:23.3 .0'
122+ playImplementation ' com.google.android.ump:user-messaging-platform:3.0 .0'
119123 testImplementation ' junit:junit:4.13.2'
120- androidTestImplementation ' androidx.test:runner:1.5 .2'
121- androidTestImplementation ' androidx.test.espresso:espresso-core:3.5 .1'
124+ androidTestImplementation ' androidx.test:runner:1.6 .2'
125+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.6 .1'
122126}
123127
124128java {
0 commit comments