Skip to content

Commit

Permalink
fix(terminal): kotlinVersion to kotlin_version
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Mar 25, 2024
1 parent c1073ad commit 7d477ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/terminal/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ ext {
}

buildscript {
ext.kotlinVersion = project.hasProperty("kotlinVersion") ? rootProject.ext.kotlinVersion : '1.8.20'
ext.kotlin_version = project.hasProperty("kotlin_version") ? rootProject.ext.kotlin_version : '1.8.20'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

Expand Down Expand Up @@ -67,7 +67,7 @@ dependencies {
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

implementation "com.stripe:stripeterminal-core:$stripeterminalCoreVersion"
implementation "com.stripe:stripeterminal-localmobile:$stripeterminalLocalmobileVersion"
Expand Down

0 comments on commit 7d477ec

Please sign in to comment.