Last active
December 13, 2018 07:56
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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