-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (41 loc) · 1.1 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.5.21"
repositories {
jcenter()
mavenCentral()
google()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
google()
maven { url 'https://jitpack.io' }
maven { url "https://raw.githubusercontent.com/andvipgroup/CameraLib/master" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 24
compileSdkVersion = 33
targetSdkVersion = 31
buildToolsVersion = "31.0.0"
javaVersion = JavaVersion.VERSION_1_8
abiFilters = "armeabi-v7a,arm64-v8a"
localTest = false
isMasterPkg = true
hackJarName = "hack.jar"
versionCode = 100
versionName = "1.0.0"
masterPkg = "virtual.camera.app"
assistPkg = "virtual.camera.app.assist"
}