2018-12-13 04:35:50 -05: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 14:09:12 +08:00
|
|
|
api project(':net')
|
2019-01-30 03:10:12 -05:00
|
|
|
api project(':signing')
|
2019-01-04 14:09:12 +08:00
|
|
|
api 'org.kamranzafar:jtar:2.3'
|
|
|
|
|
2019-01-31 23:49:57 -05:00
|
|
|
def libsuVersion = 'd99f481563'
|
2019-01-04 14:09:12 +08:00
|
|
|
api "com.github.topjohnwu.libsu:core:${libsuVersion}"
|
|
|
|
api "com.github.topjohnwu.libsu:io:${libsuVersion}"
|
2018-12-13 04:35:50 -05:00
|
|
|
}
|