-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (30 loc) · 1.33 KB
/
build.gradle.kts
File metadata and controls
31 lines (30 loc) · 1.33 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.compose) apply false
}
buildscript {
repositories {
maven { setUrl("https://maven.aliyun.com/repository/central") }
maven { setUrl("https://maven.aliyun.com/repository/jcenter") }
maven { setUrl("https://maven.aliyun.com/repository/google") }
maven { setUrl("https://maven.aliyun.com/repository/gradle-plugin") }
maven { setUrl("https://maven.aliyun.com/repository/public") }
maven { setUrl("https://dl.bintray.com/ppartisan/maven") }
maven { setUrl("https://clojars.org/repo") }
maven { setUrl("https://jitpack.io") }
gradlePluginPortal()
google()
mavenLocal()
mavenCentral()
}
dependencies {
classpath ("com.github.megatronking.stringfog:gradle-plugin:5.1.0")
// 选用加解密算法库,默认实现了xor算法,也可以使用自己的加解密库。
classpath ("com.github.megatronking.stringfog:xor:5.0.0")
classpath ("com.android.tools.build:gradle:8.1.3")
//扁平化加密
classpath ("com.github.CodingGay:BlackObfuscator-ASPlugin:3.9")
}
}