Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Blackbox | 1,914 | 2 months ago | 71 | |||||||
BlackBox is a virtual engine, it can clone and run virtual application on Android, users don't have to install APK file to run the application on devices. BlackBox control all virtual applications, so you can do anything you want by using BlackBox. | ||||||||||
Vagrant Disksize | 407 | 2 | 4 years ago | 4 | October 26, 2018 | 24 | mit | Ruby | ||
Vagrant plugin to resize disks in VirtualBox | ||||||||||
Spacecore | 331 | 2 months ago | 8 | Kotlin | ||||||
SpaceCore is a virtual Android system engine that can engage users clone and run dual applications,this engine can also support device simulation, fake GPS and many other features.SpaceCore是一个虚拟引擎内核,提供在Android上克隆和运行虚拟应用程序,并且已支持设备模拟、模拟定位以及其他更多的功能。 | ||||||||||
Vagrant Alpine | 137 | 1 | 4 years ago | 6 | November 19, 2018 | 7 | mit | Ruby | ||
Vagrant plugin for Alpine Linux Guest | ||||||||||
Wordpress | 98 | 3 days ago | 16 | July 24, 2016 | 33 | gpl-3.0 | PHP | |||
The WordPress project layout used by many of Seravo's customers, suitable also for local development with Vagrant and git deployment | ||||||||||
Vagrant Elasticsearch Cluster | 58 | 6 years ago | 3 | mit | HTML | |||||
[NOT MAINTAINED] Create an ElasticSearch cluster with a simple single bash command. Config through environment variables: RAM, cluster name, number of nodes, network ip,... | ||||||||||
Provisioning Gradle Plugin | 38 | 9 years ago | Groovy | |||||||
Gradle Plugin for Driving Server Provisioning Through Configuration | ||||||||||
Virtualbox Plugin | 31 | 4 years ago | 3 | Java | ||||||
Jenkins virtualbox plugin | ||||||||||
Volatility Plugin Tutorial | 21 | 6 years ago | ||||||||
Development guide for Volatility Plugins | ||||||||||
Packer Post Processor Virtualbox To Hyperv | 20 | 5 years ago | May 25, 2021 | 1 | apache-2.0 | Go | ||||
Packer plugin to create Hyper-V vagrant boxes from VirtualBox artifacts |
SpaceCore is an "Application Virtualization Engine"on Android, also known as a lightweight Android virtual machine, which creates a sandbox environment for the Android system. It can be used for multiple app instances, data isolation, script automation, plug-in development, and Google Play Store deployment.
Official website: https://spacecore.dev
Telegram@android_spacecore
If you need to use it for Google Play Store deployment, please don't use the public version of the SDK, otherwise it will cause account blocking.
please contact Telegram@Samuel or Email: [email protected] to get the Google Play Store special version.
Compatibility | |
---|---|
ABIs | armeabi-v7a / arm64-v8a |
Android version | 6.0 ~ 14.0 and future versions |
The version is based on the main project version, if the main project does not add dependencies, you need to add the following dependencies
implementation "com.tencent:mmkv-static:1.2.10"
implementation "com.google.code.gson:gson:2.9.1"
If the main project does not use kotlin, you need to additionally introduce
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.5.30"
Put this initialization code within "Application#attachBaseContext".
FCore.get().init(this);
Please note that after calling init()
, if the FCore.get().isClient()
condition is true, please try not to do other initialization in the Application. If you encounter any problems, please contact technical support.
override fun attachBaseContext(base: Context) {
super.attachBaseContext(base)
FCore.get().init(this)
FCore.get().setAllowSystemInteraction(true)
FCore.get().setAutoPreloadApplication(true)
if(FCore.isClient()) {
return
}
// do something...
}
override fun onCreate() {
super.onCreate()
if(FCore.isClient()) {
return
}
// do something...
}
Method 1: App Clone
This method relies on the application that is already installed on the system. If the application is uninstalled from the system, the cloned app will also disappear.
FCore.get().installPackageAsUser("package_name", USER_ID)
Method 2: Running without installation
This method supports running without installation and will not be affected by system installation or uninstallation.
FCore.get().installPackageAsUser(new File("/sdcard/wechat.apk"), USER_ID)
FCore.get().launchApk("package_name", USER_ID)
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 |
setAutoForeground | Set auto start/close notification bar to automatically close notification bar when no process is active |
METHOD | DESCRIPTION |
---|---|
findProcessRecord | Finding process information |
addProcessMonitor | Adding sandboxed internal process listeners |
removeProcessMonitor | Removing sandboxed internal process listeners |
METHOD | DESCRIPTION |
---|---|
getUsers | Getting users in the sandbox |
createUser | Create users in the sandbox |
deleteUser | Delete users in the sandbox (all application information will be deleted) |
METHOD | DESCRIPTION |
---|---|
exportAppData | Export all data of a certain application |
importAppData | Import all data of a certain application |
METHOD | DESCRIPTION |
---|---|
addRule | Add a rule |
setAllowSystemInteraction | Whether to allow interaction with system applications when the sandbox cannot find broadcasts, activities, etc |
setHideRoot | Hide root status |
setHideSim | Hide SIM card status |
setHideVPN | Hide VPN status |
setVisitExternalApp | Allow sandboxed applications to perceive external applications |
setDisableKill | Prevent application crashes |
setDisableNetwork | Disable application network |
setHidePath | Hide multi-open path and storage path |
getSpaceLanguage | Get the simulated language of a certain space |
setSpaceLanguage | Set the simulated language of a certain space (e.g. Chinese: zh) |
getSpaceRegion | Get the simulated region of a certain space |
setSpaceRegion | Set the simulated region of a certain space (e.g. China: CN) |
getSpaceTimeZone | Get the simulated time zone of a certain space |
setSpaceTimeZone | Set the simulated time zone of a certain space (e.g. Shanghai: Asia/Shanghai) |
METHOD | DESCRIPTION |
---|---|
getPermission | Get app permission rules |
updatePermission | Update app permission rules |
revokePermission | Remove app permission rules (the app will follow the actual permissions of the host APP) |
METHOD | DESCRIPTION |
---|---|
enableOptRule | Whether to enable rule-based blocking of push notifications, third-party SDKs, hot updates, ads, etc. to optimize app running speed. If an application exception occurs, please turn off |
setAutoPreloadApplication | Intelligent preloading of applications, where the kernel automatically loads applications based on usage to accelerate startup speed. Default: on |
preloadApplicationCount | Default number of preloaded applications: 2 |
setPreloadProcessCount | Set the number of preloading processes to speed up application startup. Default: 3 |
setBackToHome | Whether to return to the host app when the sandbox app exits |
setSpaceTaskDescriptionPrefix | Set the application prefix in the recent tasks list (default: F{user ID}) |
setEnableLauncherView | Whether to enable splash screen |
restartCoreSystem | Restart the kernel (all applications will be killed) |
When dealing with various applications, SpaceCore supports configuring different runtime parameters and virtual machine parameters to achieve adaptation. SpaceCore supports a powerful rule configuration system that can customize exclusive rules for each application. The rule library can be dynamically updated through cloud configuration. The supported rule functions are gradually under development.
PackageRule.Builder builder = new PackageRule.Builder("com.tencent.mm",
/* Scoped process. Leave blank if the scope is all processes */
"com.tencent.mm", "com.tencent.mm:tools", "com.tencent.mm:appbrand1", "com.tencent.mm:appbrand2")
// disable a Activity
.addBlackActivity("com.tencent.mm.plugin.base.stub.WXEntryActivity")
// disable a broadcast
.addBlackBroadcast("com.tencent.mm.plugin.appbrand.task.AppBrandTaskPreloadReceiver")
// disable a service
.addBlackService("com.tencent.mm.plugin.backup.backuppcmodel.BackupPcService")
// disable a ContentProvider
.addBlackContentProvider("androidx.startup.InitializationProvider")
// preloading process, can pre-start a certain process to speed up the runtime experience
.addPreloadProcessName("com.tencent.mm:appbrand1")
// disable a process from starting
.addBlackProcessName("com.tencent.mm:appbrand2")
// deny access to a file
.addBlackIO("/proc/self/maps")
// redirect a certain file
.addRedirectIO("/proc/self/cmdline", "/proc/self/fake-cmdline")
// hide root
.isHideRoot(true)
// hide SIM
.isHideSim(true)
// hide VPN
.isHideVpn(true)
// many more...
// set language
.setLanguage("zh")
// set region
.setRegion("CN")
// set timezone
.setTimeZone("Asia/Shanghai");
PackageRule build = builder.build();
// add a rule
FCore.get().addRule(build);
// if there are multiple rules, put them in FRule
FRule fRule = new FRule(builder.build(), builder.build(), builder.build());
FCore.get().addFRule(fRule);
// support fetching configuration content from remote cloud
String json = new Gson().toJson(fRule);
// load json rule
FCore.get().addFRuleContent(json);