-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (34 loc) · 987 Bytes
/
Copy pathbuild.gradle
File metadata and controls
44 lines (34 loc) · 987 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
plugins {
id 'com.android.application'
}
android {
namespace 'com.candlelight.javacompiler.plugins'
compileSdk 33
defaultConfig {
applicationId "com.candlelight.javacompiler.plugins"
minSdk 21
targetSdk 33
versionCode 1
versionName "1.0"
multiDexEnabled true
vectorDrawables {
useSupportLibrary true
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.0.4'
implementation files('libs/dx-1.16.jar')
implementation files('libs/nb-javac-17.0.0.4-android.jar')
}