Get a SDK
Lite Version | Full Version | |
---|---|---|
Compatibility | low | high |
Supported ABIs | armeabi-v7a | armeabi-v7a / arm64-v8a |
Android | 6.0~13.0 | 6.0~13.0 and future versions |
Native Hook | ✔ | ✔ |
Java Hook | ✔ | ✔ |
IO Hook | ✔ | ✔ |
Xposed | ✔ | ✔ |
APP Clone | ✔ | ✔ |
Customization | ❌ | ✔ |
Bug Fix | ❌ | ✔ |
Feature Updates | ❌ | ✔ |
Script Automation | ❌ | ✔ |
Multiple User | ❌ | ✔ |
Application Hardening | ❌ | ✔ |
APP Running Without Installing | ❌ | ✔ |
Device Simulation | ❌ | ✔ |
Fake GPS | ❌ | ✔ |
Language Simulation | ❌ | ✔ |
Region Simulation | ❌ | ✔ |
Timezone Simulation | ❌ | ✔ |
Root Hidden | ❌ | ✔ |
SIM Card Status Hidden | ❌ | ✔ |
Below is the sdk documentation.
0. Dependency
implementation "com.tencent:mmkv-static:1.2.10"
1. Initialization
FCore.get().init(this);
2. Examples
FCore.get().installPackageAsUser("package_name", USER_ID)
FCore.get().installPackageAsUser(new File("/sdcard/some_app.apk"), USER_ID)
FCore.get().launchApk("package_name", USER_ID)
3. Interfaces
Method | Description |
---|---|
init | Initialize sandbox |
isInstalled | Check if the App is installed in the sandbox |
installPackageAsUser | Clone App into sandbox according to package name |
installPackageAsUser | Clone App into sandbox via apk file |
uninstallPackage | Uninstall an App installed in the sandbox globally |
uninstallPackageAsUser | Uninstall an App installed in the sandbox by user |
getInstalledApplications | Get all applications installed in the sandbox |
getApplicationInfo | Get application info of an App in the sandbox |
getPackageInfo | Get package info of an application in the sandbox |
getLaunchIntentForPackage | Get LauncherIntent of an App |
launchApk | Launch App in sandbox |
launchIntent | Launch App via Intent |
isRunning | Check if an App is running |
clearPackage | Clear App data |
stopPackage | Stop an app from running |
stopAllPackages | Stop all running applications |
setApplicationCallback | |
disableFakeLocation | |
enableFakeLocation | |
setLocation | |
getLocation | |
setGlobalLocation | |
getGlobalLocation | |
getUsers | |
createUser | |
deleteUser | |
exportAppData | |
importAppData | |
setPreloadProcessCount | |
setHideRoot | |
setHideSim | |
setHideVPN | |
setVisitExternalApp | |
setDisableKill | |
setDisableNetwork | |
setHidePath | |
getSpaceLanguage | |
setSpaceLanguage | |
getSpaceRegion | |
setSpaceRegion | |
getSpaceTimeZone | |
setSpaceTimeZone | |
getSpaceTaskDescriptionPrefix |