mirror of
https://github.com/revanced/Apktool.git
synced 2025-02-09 10:36:46 +01:00
add application plugin to the apktool-cli (#3070)
This commit is contained in:
parent
fb4889f432
commit
80dcdd1d34
@ -15,13 +15,6 @@
|
||||
*/
|
||||
import proguard.gradle.ProGuardTask
|
||||
|
||||
apply plugin: 'com.github.johnrengelman.shadow'
|
||||
|
||||
dependencies {
|
||||
implementation depends.commons_cli
|
||||
implementation project(':brut.apktool:apktool-lib')
|
||||
}
|
||||
|
||||
buildscript {
|
||||
dependencies {
|
||||
repositories {
|
||||
@ -35,6 +28,20 @@ buildscript {
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id 'com.github.johnrengelman.shadow'
|
||||
id 'application'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation depends.commons_cli
|
||||
implementation project(':brut.apktool:apktool-lib')
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass = 'brut.apktool.Main'
|
||||
}
|
||||
|
||||
jar {
|
||||
manifest {
|
||||
attributes 'Main-Class': 'brut.apktool.Main'
|
||||
|
@ -1,5 +1,6 @@
|
||||
rootProject.name = 'apktool-cli'
|
||||
include 'brut.j.common',
|
||||
'brut.j.util',
|
||||
'brut.j.dir',
|
||||
'brut.apktool:apktool-lib',
|
||||
'brut.apktool:apktool-cli'
|
||||
'brut.apktool:apktool-cli'
|
||||
|
Loading…
x
Reference in New Issue
Block a user