Skip to content

Instantly share code, notes, and snippets.

@rutvikbhatt9
Created December 13, 2018 07:47
Show Gist options
  • Save rutvikbhatt9/f4728bdb256d807242126dd0d99a1361 to your computer and use it in GitHub Desktop.
Save rutvikbhatt9/f4728bdb256d807242126dd0d99a1361 to your computer and use it in GitHub Desktop.
set the classpath in project level build.gradle file for Gradle Play Publisher Plugin
// Top-level build file where you can add configuration options common to all sub-projects/modules.
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
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
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