misc: Xposed API from Jitpack (#160)

This commit is contained in:
deltazefiro
2025-01-28 19:14:53 +08:00
parent 0e8958a449
commit e08bc8a7d2
2 changed files with 4 additions and 3 deletions
+4 -1
View File
@@ -143,7 +143,10 @@ dependencies {
implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.work:work-runtime:2.9.1'
compileOnly 'de.robv.android.xposed:api:82'
// F-Droid disallow `api.xposed.info` since it's not a "Trusted Maven Repository".
// So we create a mirror GitHub repository and obtain the library from `jitpack.io` instead.
// Equivalent to `implementation 'de.robv.android.xposed:api:82'`.
compileOnly 'com.github.deltazefiro:XposedBridge:main-SNAPSHOT'
}
configurations.configureEach {
-2
View File
@@ -3,7 +3,6 @@ buildscript {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://api.xposed.info'}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
@@ -16,7 +15,6 @@ allprojects {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://api.xposed.info'}
}
}