1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- buildscript {
-
- ext.MINIFY_ENABLE = true
-
- ext.NDK_VERSION = '21.3.6528147'
-
- ext.KOTLIN_VERSION = '1.4.20'
-
- ext.COMPILE_SDK_VERSION = 30
-
- ext.BUILD_TOOLS_VERSION = '30.0.3'
-
- ext.MIN_SDK_VERSION = 21
-
- ext.TARGET_SDK_VERSION = 30
- repositories {
- google()
- mavenCentral()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:4.1.3'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
-
- classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
-
-
- }
- }
- allprojects {
- repositories {
- google()
- mavenCentral()
- jcenter()
- maven { url 'https://jitpack.io' }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|