Skip to content

Instantly share code, notes, and snippets.

@rutvikbhatt9
Last active December 13, 2018 07:56
Show Gist options
  • Save rutvikbhatt9/9b232e9e2f7b5fdf3115e916009f1e2a to your computer and use it in GitHub Desktop.
Save rutvikbhatt9/9b232e9e2f7b5fdf3115e916009f1e2a to your computer and use it in GitHub Desktop.
set the classpath in project level build.gradle file for Gradle Play Publisher Plugin
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.github.triplet.gradle:play-publisher:1.1.5 //add the classpath for Gradle Play Publisher 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