Renamed since the module hides more than accessibility state now — hook class and app display name become VeilHook/Veil (the module already lived under the space.bdeshi.veil namespace). Two new features, same per-app toggle model as everything else: - Root/manager apps: hides packages in a configurable shared list (default KernelSU + Magisk) from PackageManager's getPackageInfo/getApplicationInfo/ getInstalledPackages/getInstalledApplications. - Build tags/type: overwrites Build.TAGS/Build.TYPE to release-keys/user for the hooked process, hiding the test-keys/userdebug markers apps sometimes check for. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
20 lines
372 B
Kotlin
20 lines
372 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven(url = "https://api.xposed.info/")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "veil"
|
|
include(":app")
|