Skip to content

Commit cc9ef0f

Browse files
authored
fix: minor gradle changes (#18)
1 parent dd7af5c commit cc9ef0f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

android/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript {
1818
}
1919
dependencies {
2020
classpath 'com.android.tools.build:gradle:8.0.0'
21-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
21+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${$kotlinVersion}"
2222
}
2323
}
2424

@@ -64,12 +64,12 @@ repositories {
6464
dependencies {
6565
implementation fileTree(dir: 'libs', include: ['*.jar'])
6666
implementation project(':capacitor-android')
67-
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
68-
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
67+
implementation "androidx.appcompat:appcompat:${androidxAppCompatVersion}"
68+
implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
6969
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${coroutinesVersion}"
7070
implementation 'com.google.android.material:material:1.6.1'
7171
implementation 'androidx.appcompat:appcompat:1.4.2'
72-
implementation "androidx.core:core-ktx:$coreKtx"
72+
implementation "androidx.core:core-ktx:${coreKtx}"
7373
implementation "androidx.activity:activity-ktx:1.5.1"
7474
implementation 'androidx.fragment:fragment-ktx:1.5.1'
7575
implementation "androidx.viewpager2:viewpager2:1.0.0"
@@ -116,7 +116,7 @@ dependencies {
116116
//def moshi_version = "1.12.0"
117117
//implementation "com.squareup.moshi:moshi:$moshi_version"
118118
//implementation "com.squareup.moshi:moshi-kotlin:$moshi_version"
119-
testImplementation "junit:junit:$junitVersion"
120-
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
121-
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
119+
testImplementation "junit:junit:${junitVersion}"
120+
androidTestImplementation "androidx.test.ext:junit:${androidxJunitVersion}"
121+
androidTestImplementation "androidx.test.espresso:espresso-core:${androidxEspressoCoreVersion}"
122122
}

0 commit comments

Comments
 (0)