Skip to content

Instantly share code, notes, and snippets.

@NewtronLabs
Last active June 28, 2020 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NewtronLabs/64c1328119ed81473a535ede540b2a4f to your computer and use it in GitHub Desktop.
Save NewtronLabs/64c1328119ed81473a535ede540b2a4f to your computer and use it in GitHub Desktop.
Android Gradle Setup
buildscript {
repositories {
google()
jcenter()
maven { url "http://code.newtronlabs.com:8081/artifactory/libs-release-local" }
}
dependencies {
classpath "com.android.tools.build:gradle:3.5.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.newtronlabs.android:plugin:4.0.1'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "http://code.newtronlabs.com:8081/artifactory/libs-release-local" }
}
}
subprojects {
apply plugin: 'com.newtronlabs.android'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment