comparison app/build.gradle @ 36:70f1d11d53ad

Attempt to make it work on Android 9 and earlier.
author David Barts <n5jrn@me.com>
date Fri, 19 Mar 2021 12:49:13 -0700
parents 19c584b29679
children 444fe4416c9b
comparison
equal deleted inserted replaced
35:6607f675a5f7 36:70f1d11d53ad
9 9
10 defaultConfig { 10 defaultConfig {
11 applicationId "com.bartsent.simpleresizer" 11 applicationId "com.bartsent.simpleresizer"
12 minSdkVersion 23 12 minSdkVersion 23
13 targetSdkVersion 30 13 targetSdkVersion 30
14 versionCode 2 14 versionCode 4
15 versionName "1.01" 15 versionName "1.03"
16
17 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 16 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
18 } 17 }
19 18
20 buildTypes { 19 buildTypes {
21 release { 20 release {
41 implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" 40 implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
42 implementation 'androidx.core:core-ktx:1.3.2' 41 implementation 'androidx.core:core-ktx:1.3.2'
43 implementation 'androidx.appcompat:appcompat:1.2.0' 42 implementation 'androidx.appcompat:appcompat:1.2.0'
44 implementation 'com.google.android.material:material:1.3.0' 43 implementation 'com.google.android.material:material:1.3.0'
45 implementation 'androidx.constraintlayout:constraintlayout:2.0.4' 44 implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
46 implementation 'androidx.preference:preference:1.1.1' 45 implementation 'androidx.preference:preference-ktx:1.1.1'
47 testImplementation 'junit:junit:4.+' 46 testImplementation 'junit:junit:4.+'
48 androidTestImplementation 'androidx.test.ext:junit:1.1.2' 47 androidTestImplementation 'androidx.test.ext:junit:1.1.2'
49 androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' 48 androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
50 } 49 }