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) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,10 +12,13 @@ compileJava.options.encoding = "UTF-8"
|
|||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation project(':axmlprinter')
|
||||
implementation project(':apksigner')
|
||||
//implementation project(':apksigner')
|
||||
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 {
|
||||
baseName = "mmpatch"
|
||||
destinationDirectory = new File("$rootProject.projectDir/out")
|
||||
|
|
|
|||
|
|
@ -13,4 +13,3 @@ include ':manager-service'
|
|||
project(':manager-service').projectDir = new File('mmp/manager-service')
|
||||
include ':patch'
|
||||
include ':axmlprinter'
|
||||
include ':apksigner'
|
||||
|
|
|
|||
Loading…
Reference in New Issue