2018-12-13 10:35:50 +01:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2019-01-04 07:09:12 +01:00
|
|
|
api project(':net')
|
2019-01-30 09:10:12 +01:00
|
|
|
api project(':signing')
|
2019-01-04 07:09:12 +01:00
|
|
|
api 'org.kamranzafar:jtar:2.3'
|
|
|
|
|
2019-02-07 06:37:40 +01:00
|
|
|
def libsuVersion = '2.3.1'
|
2019-01-04 07:09:12 +01:00
|
|
|
api "com.github.topjohnwu.libsu:core:${libsuVersion}"
|
|
|
|
api "com.github.topjohnwu.libsu:io:${libsuVersion}"
|
2018-12-13 10:35:50 +01:00
|
|
|
}
|