-
Notifications
You must be signed in to change notification settings - Fork 157
/
build.gradle
47 lines (40 loc) · 1.03 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
plugins {
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.jvm' version '1.8.0' apply false
alias libs.plugins.refine apply false
}
apply plugin: 'idea'
idea.module {
excludeDirs += file('out')
resourceDirs += file('template')
resourceDirs += file('scripts')
}
subprojects {
plugins.withId("com.android.base") {
plugins.apply('dev.rikka.tools.refine')
android {
compileSdk = 33
defaultConfig {
minSdk = 23
targetSdk = 33
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
buildFeatures {
aidl true
}
}
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 23
targetSdkVersion = 33
api_min_sdk = 23
api_target_sdk = 33
}