Files
lsposed-veil/settings.gradle.kts
Claude Sonnet 5 2f6065cc8b Rename hook class to VeilHook; add root/manager-app hiding and build-tag spoofing
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>
2026-08-06 20:57:29 +06:00

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")