Skip to content

Commit

Permalink
Override gradle plugin and kotlin gradle version also
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangdat committed Oct 19, 2023
1 parent d84a2b8 commit e39d208
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,16 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.8'
}

for (p in project.subprojects) {
p.buildscript.configurations.classpath.resolutionStrategy {
force "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
}

allprojects {
Expand Down

0 comments on commit e39d208

Please sign in to comment.