-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (30 loc) · 814 Bytes
/
build.gradle
File metadata and controls
32 lines (30 loc) · 814 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
apply plugin: 'groovy'
apply plugin: 'maven'
//apply plugin: 'com.github.dcendents.android-maven'
group='top.niunaijun.blackobfuscator'
dependencies {
//implementation "com.android.tools.build:gradle:3.3.1"
compileOnly "com.android.tools.build:gradle:4.0.1"
implementation "com.android.tools.build:transform-api:1.5.0"
implementation "commons-io:commons-io:2.5"
//gradle sdk
implementation gradleApi()
//groovy sdk
implementation localGroovy()
implementation "com.github.CodingGay.BlackObfuscator:dex-tools:2.1"
}
repositories {
mavenCentral()
maven {
url uri('localRepo')
}
}
group='top.niunaijun.blackobfuscator'
version='1.0.6'
uploadArchives {
repositories{
mavenDeployer {
repository(url: uri('../localRepo'))
}
}
}