Skip to content

Instantly share code, notes, and snippets.

@geek-atif
Created July 24, 2022 15:21
Show Gist options
  • Save geek-atif/baadd581b5d84b8866099a250a90b764 to your computer and use it in GitHub Desktop.
Save geek-atif/baadd581b5d84b8866099a250a90b764 to your computer and use it in GitHub Desktop.
build.gradle
buildscript {
ext.kotlin_version = "1.5.0"
repositories {
google()
jcenter()
mavenCentral() //Add this line.
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.kezong:fat-aar:1.3.8' //Add this line. Here we include the plugin
}
}
allprojects {
repositories {
google()
jcenter()
}
}
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