101 lines
3.5 KiB
Groovy
101 lines
3.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'com.google.android.gms.oss-licenses-plugin'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.3"
|
|
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
|
|
signingConfigs {
|
|
def keystorePwd = null
|
|
def alias = null
|
|
def pwd = null
|
|
if (project.rootProject.file('local.properties').exists()) {
|
|
Properties properties = new Properties()
|
|
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
|
keystorePwd = properties.getProperty("RELEASE_STORE_PASSWORD")
|
|
alias = properties.getProperty("RELEASE_KEY_ALIAS")
|
|
pwd = properties.getProperty("RELEASE_KEY_PASSWORD")
|
|
}
|
|
release {
|
|
storeFile file("edxpmanager.jks")
|
|
storePassword keystorePwd != null ? keystorePwd : System.getenv("KEYSTORE_PASS")
|
|
keyAlias alias != null ? alias : System.getenv("ALIAS_NAME")
|
|
keyPassword pwd != null ? pwd : System.getenv("ALIAS_PASS")
|
|
}
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "org.meowcat.edxposed.manager"
|
|
minSdkVersion 26
|
|
targetSdkVersion 30
|
|
versionCode 458010
|
|
versionName "4.5.8.1"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
disable 'ExtraTranslation'
|
|
abortOnError true
|
|
checkReleaseBuilds true
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/**'
|
|
exclude 'org/**'
|
|
exclude '**.properties'
|
|
exclude '**.bin'
|
|
}
|
|
|
|
dependenciesInfo.includeInApk false
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
shrinkResources false
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
applicationVariants.all { variant ->
|
|
variant.outputs.all { output ->
|
|
outputFileName = "EdXposedManagerR-${defaultConfig.versionName}-${defaultConfig.versionCode}-${buildType.name}.apk"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
implementation 'androidx.browser:browser:1.3.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
implementation "androidx.recyclerview:recyclerview:1.1.0"
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
implementation "com.github.topjohnwu.libsu:core:2.5.1"
|
|
implementation 'com.google.android.gms:play-services-oss-licenses:17.0.0'
|
|
implementation 'com.google.android.material:material:1.2.1'
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
implementation 'com.takisoft.preferencex:preferencex:1.1.0'
|
|
implementation 'com.takisoft.preferencex:preferencex-colorpicker:1.1.0'
|
|
implementation 'com.timehop.stickyheadersrecyclerview:library:0.4.3@aar'
|
|
implementation 'tech.rectifier.preferencex-android:preferencex-simplemenu:88f93154b2'
|
|
implementation 'me.zhanghai.android.appiconloader:appiconloader-glide:1.2.0'
|
|
implementation 'me.zhanghai.android.fastscroll:library:1.1.5'
|
|
compileOnly 'de.robv.android.xposed:api:82'
|
|
}
|