1234567891011121314151617181920212223242526272829303132333435363738 |
- // 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:4.0.2'
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- // Add the following line:
- classpath 'com.google.gms:google-services:4.3.3' // Google Services plugin
- }
- }
- allprojects {
- repositories {
- google()
- jcenter()
- }
- }
- ext {
- compileSdkVersion = 28
- buildToolsVersion = '28.0.3'
- androidXLibraryVersion = '1.0.0'
- PUBLISH_GROUP_ID = 'com.theartofdev.edmodo'
- PUBLISH_ARTIFACT_ID = 'android-image-cropper'
- PUBLISH_VERSION = '2.8.0'
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|