fix android

This commit is contained in:
John Smith
2022-03-12 15:27:15 -05:00
parent aae616a1ff
commit cd09203737
12 changed files with 60 additions and 62 deletions

View File

@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.4.32'
ext.kotlin_version = '1.6.10'
repositories {
google()
mavenCentral()
@@ -29,7 +29,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 30
compileSdkVersion 31
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
@@ -46,7 +46,7 @@ android {
defaultConfig {
minSdkVersion 24
targetSdkVersion 30
targetSdkVersion 31
versionCode 1
versionName "1.0"
@@ -74,7 +74,7 @@ android {
}
dependencies {
implementation 'androidx.security:security-crypto:1.1.0-alpha03'
implementation "androidx.security:security-crypto:1.1.0-alpha03"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}