@@ -14,9 +14,9 @@ android {
1414 applicationId " com.softartdev.conwaysgameoflife"
1515 minSdkVersion 16
1616 targetSdk 33
17- versionCode 21
18- versionName ' 2.1'
19- resConfigs ' en'
17+ versionCode 211
18+ versionName ' 2.1.1 '
19+ resourceConfigurations + = [ ' en' ]
2020 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
2121 }
2222 buildFeatures {
@@ -50,26 +50,29 @@ android {
5050 sourceCompatibility JavaVersion . VERSION_1_8
5151 targetCompatibility JavaVersion . VERSION_1_8
5252 }
53+ kotlinOptions {
54+ jvmTarget = ' 1.8'
55+ }
5356 testBuildType = project. hasProperty(" testBuildType" ) ? project. property(" testBuildType" ) : " debug"
5457}
5558
5659dependencies {
5760 implementation fileTree(dir : ' libs' , include : [' *.jar' ])
5861 implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version "
59- implementation ' androidx.core:core-ktx:1.9 .0'
60- implementation ' androidx.appcompat:appcompat:1.5 .1'
62+ implementation ' androidx.core:core-ktx:1.10 .0'
63+ implementation ' androidx.appcompat:appcompat:1.6 .1'
6164 implementation ' com.jakewharton.timber:timber:5.0.1'
62- implementation platform(' com.google.firebase:firebase-bom:30 .5.0' )
65+ implementation platform(' com.google.firebase:firebase-bom:31 .5.0' )
6366 implementation ' com.google.firebase:firebase-analytics'
6467 implementation ' com.google.firebase:firebase-crashlytics'
65- def leak_canary_version = ' 2.9.1 '
68+ def leak_canary_version = ' 2.10 '
6669 debugImplementation " com.squareup.leakcanary:leakcanary-android-process:$leak_canary_version "
6770 debugImplementation " com.squareup.leakcanary:leakcanary-android:$leak_canary_version "
6871 implementation " com.squareup.leakcanary:plumber-android:$leak_canary_version "
6972 testImplementation ' junit:junit:4.13.2'
70- androidTestImplementation ' androidx.test:core:1.5.0-beta01 '
71- androidTestImplementation ' androidx.test.ext:junit:1.1.3 '
72- androidTestImplementation ' androidx.test:rules:1.4 .0'
73- androidTestImplementation ' androidx.test.espresso:espresso-core:3.4.0 '
73+ androidTestImplementation ' androidx.test:core:1.5.0'
74+ androidTestImplementation ' androidx.test.ext:junit:1.1.5 '
75+ androidTestImplementation ' androidx.test:rules:1.5 .0'
76+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.5.1 '
7477 androidTestImplementation " com.squareup.leakcanary:leakcanary-android-instrumentation:$leak_canary_version "
7578}
0 commit comments