dep apksigner as source
This commit is contained in:
parent
53aae23565
commit
c1cdcb3428
|
|
@ -37,6 +37,14 @@ allprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//subprojects {
|
||||||
|
// afterEvaluate { module ->
|
||||||
|
// if (module.name == 'apksigner') {
|
||||||
|
// sourceSets.main.java.srcDirs += 'src/apksigner/java'
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
task clean(type: Delete) {
|
task clean(type: Delete) {
|
||||||
delete rootProject.buildDir
|
delete rootProject.buildDir
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,10 +12,13 @@ compileJava.options.encoding = "UTF-8"
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
implementation project(':axmlprinter')
|
implementation project(':axmlprinter')
|
||||||
implementation project(':apksigner')
|
//implementation project(':apksigner')
|
||||||
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
|
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sourceSets.main.java.srcDirs += "$rootProject.projectDir/apksigner/src/main/java"
|
||||||
|
sourceSets.main.java.srcDirs += "$rootProject.projectDir/apksigner/src/apksigner/java"
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
baseName = "mmpatch"
|
baseName = "mmpatch"
|
||||||
destinationDirectory = new File("$rootProject.projectDir/out")
|
destinationDirectory = new File("$rootProject.projectDir/out")
|
||||||
|
|
|
||||||
|
|
@ -13,4 +13,3 @@ include ':manager-service'
|
||||||
project(':manager-service').projectDir = new File('mmp/manager-service')
|
project(':manager-service').projectDir = new File('mmp/manager-service')
|
||||||
include ':patch'
|
include ':patch'
|
||||||
include ':axmlprinter'
|
include ':axmlprinter'
|
||||||
include ':apksigner'
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue