Skip to content

Instantly share code, notes, and snippets.

@takahirohonda
Last active September 15, 2019 01:14
Show Gist options
  • Save takahirohonda/40259b6152174d24c8f7ce64aa772455 to your computer and use it in GitHub Desktop.
Save takahirohonda/40259b6152174d24c8f7ce64aa772455 to your computer and use it in GitHub Desktop.
my-twa-config-project-build.gradle
buildscript {
ext.kotlin_version = '1.3.31'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment