Skip to content

Commit

Permalink
Merge branch 'update-target-and-dependencies' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
udenr committed Oct 25, 2023
2 parents e34da30 + 6520eff commit 23ee706
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions BackupAPI/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'kotlin-parcelize'
}

android {
compileSdkVersion 34
Expand All @@ -11,7 +13,7 @@ android {
versionCode 1
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}

buildTypes {
Expand All @@ -37,24 +39,22 @@ android {
}

dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1'
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

def work_version = "2.8.1"
def work_version = '2.8.1'
implementation "androidx.work:work-runtime:$work_version"
implementation "androidx.work:work-runtime-ktx:$work_version"
androidTestImplementation "androidx.work:work-testing:$work_version"

implementation "androidx.sqlite:sqlite-ktx:2.4.0"
implementation 'androidx.sqlite:sqlite-ktx:2.4.0'
implementation 'androidx.sqlite:sqlite-framework:2.4.0'

}

0 comments on commit 23ee706

Please sign in to comment.