feat: XposedFakeLocation 增强版
🎯 位置Hook模块: - LocationApiHooks: 核心位置API拦截 - GooglePlayServicesHooks: FusedLocationProviderClient - WifiHooks: WiFi扫描定位拦截 - TelephonyHooks: 基站定位拦截 - SensorHooks: 传感器监控 - GnssHooks: GPS卫星数据伪造 - SystemServicesHooks: 系统服务Hook 🔧 功能特性: - 完整位置伪造支持 - Mock位置检测隐藏 - 多种定位方式全覆盖 - 中文界面支持 📦 包含预编译APK
This commit is contained in:
26
settings.gradle.kts
Normal file
26
settings.gradle.kts
Normal file
@@ -0,0 +1,26 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
google {
|
||||
content {
|
||||
includeGroupByRegex("com\\.android.*")
|
||||
includeGroupByRegex("com\\.google.*")
|
||||
includeGroupByRegex("androidx.*")
|
||||
}
|
||||
}
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
dependencyResolutionManagement {
|
||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven {
|
||||
url = uri("https://api.xposed.info/")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.name = "XposedFakeLocation"
|
||||
include(":app")
|
||||
Reference in New Issue
Block a user