forked from koreader/android-luajit-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
30 lines (26 loc) · 797 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
buildscript {
ext.compileSdk = 30
ext.targetSdk = 30
ext.minSdk64 = 21
ext.minSdk = 14
ext.gradle_plugin_version = '4.2.1'
ext.kotlin_plugin_version = '1.5.20'
ext.androidx_core_version = '1.6.0'
ext.androidx_appcompat_version = '1.3.1'
ext.androidx_supportv4_version = '1.0.0'
ext.android_desugar_jdk = '1.1.5'
ext.commons_compress_version = '1.20'
ext.leakcanary_version = '2.7'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_plugin_version"
//noinspection DifferentKotlinGradleVersion
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_plugin_version"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}