diff --git a/BackupAPI/build.gradle b/BackupAPI/build.gradle index 65e34fe..dcf9716 100644 --- a/BackupAPI/build.gradle +++ b/BackupAPI/build.gradle @@ -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 @@ -11,7 +13,7 @@ android { versionCode 1 versionName "1.0" - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { @@ -37,9 +39,7 @@ 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' @@ -47,14 +47,14 @@ dependencies { 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' }