
This is required because the fdroidclient app also explicitly sets java version to 1.7 and the modules need to be compiled for the same version.
15 lines
280 B
Groovy
15 lines
280 B
Groovy
apply plugin: 'java'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
sourceCompatibility = 1.7
|
|
targetCompatibility = 1.7
|
|
|
|
dependencies {
|
|
compile 'com.madgag.spongycastle:pkix:1.53.0.0'
|
|
compile 'com.madgag.spongycastle:prov:1.53.0.0'
|
|
compile 'com.madgag.spongycastle:core:1.53.0.0'
|
|
}
|