
* Hard to keep both regular and source builds working and bug-free * Keep -PsourceDeps to package jars for libs which are not yet in jcenter * Use the libs packaged in jcenter the same way in both builds * Remove cleanBinaryDeps, can be done via the shell easily
13 lines
335 B
Groovy
13 lines
335 B
Groovy
include ':F-Droid'
|
|
if (hasProperty('sourceDeps')) {
|
|
include ':extern:support-v4-preferencefragment'
|
|
include ':extern:nanohttpd:core'
|
|
include ':extern:zipsigner'
|
|
include ':extern:jmdns'
|
|
|
|
// Needed for zipsigner
|
|
include ':extern:spongycastle:core'
|
|
include ':extern:spongycastle:pkix'
|
|
include ':extern:spongycastle:prov'
|
|
}
|