forked from koreader/android-luajit-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (24 loc) · 740 Bytes
/
build.gradle
File metadata and controls
28 lines (24 loc) · 740 Bytes
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
buildscript {
ext.compileSdk = 30
ext.targetSdk = 30
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'
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
}