forked from reveny/Android-Native-Root-Detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (36 loc) · 943 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
31
32
33
34
35
36
37
38
39
40
41
buildscript {
ext {
defaultPackageName = 'com.reveny.nativecheck'
verCode = 661
verName = '6.6.1'
androidTargetSdkVersion = 34
androidMinSdkVersion = 27
androidCompileSdkVersion = 34
androidCompileNdkVersion = '27.2.12479018'
androidSourceCompatibility = JavaVersion.VERSION_17
androidTargetCompatibility = JavaVersion.VERSION_17
}
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath libs.gradle.plugin
classpath libs.kotlin.gradle.plugin
}
}
plugins {
alias(libs.plugins.materialthemebuilder) apply false
alias(libs.plugins.autoresconfig) apply false
}
allprojects {
repositories {
mavenCentral()
google()
maven { url "https://jitpack.io" }
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}