Skip to content

Commit

Permalink
export android gradle plugin version to extra section
Browse files Browse the repository at this point in the history
  • Loading branch information
CMingTseng committed Jun 30, 2021
1 parent 003b44e commit ee79781
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,20 @@
*/

buildscript {
ext.kotlin_version = '1.4.31'
ext.compose_version = '1.0.0-beta02'
ext.coroutines_version = '1.4.2'
ext {
android_gradle_plugin_version = '7.0.0-alpha09'
kotlin_version = '1.4.31'
compose_version = '1.0.0-beta02'
coroutines_version = '1.4.2'
}

repositories {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:7.0.0-alpha09'
classpath "com.android.tools.build:gradle:$android_gradle_plugin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down

0 comments on commit ee79781

Please sign in to comment.