经过验证发现,微商双开神器将VirtualApp的演示App的界面改为绿色,并添加微信支付(售价28元),
广州市比目网络科技有限公司的这一敛财行为,严重侵害了作者的利益。请在1个月内下架你们的产品。
再次申明,VA可以使用于商业项目中,但这种赤裸裸的敛财行为,是严格禁止的。
Likes LBE Parallel Space, VirtualApp is an open platform for Android that allows you to create a Virtual Space,
you can install and run apk inside. Beyond that, VirtualApp is also a Plugin Framework,
the plugins running on VirtualApp does not require any constraints.
VirtualApp does not require root, it is running on the local process.
VirtualApp was born in early 2015, Originally, it is just a simple plugin framework,
But as time goes on,
the compatibility of it is getting better and better.
in the end, it evolved into a Virtual Container.
-
VirtualApp use the
@hide API, so you must use ourandroid.jarreplace the old one (Android-SDK/platforms/android-23/{android.jar}). -
Include the following attributes in your
AndroidManifest.xml:
<permission
android:name="com.lody.virtual.permission.VIRTUAL_BROADCAST"
android:protectionLevel="signature" />
<uses-permission android:name="com.lody.virtual.permission.VIRTUAL_BROADCAST" />
<service android:name="com.lody.virtual.client.stub.KeepService" android:process=":x"/>
<provider
android:process=":x"
android:authorities="virtual.service.BinderProvider"
android:name="com.lody.virtual.service.BinderProvider"
android:exported="false" />
<activity
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:name="com.lody.virtual.client.stub.ShortcutHandleActivity" android:exported="true"/>
<activity
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale"
android:name="com.lody.virtual.client.stub.StubActivity$C0" android:process=":p0" >
<meta-data android:name="X-Identity" android:value="Stub-User"/>
</activity>
<provider
android:process=":p0"
android:authorities="virtual.client.stub.StubContentProvider0"
android:name="com.lody.virtual.client.stub.StubContentProvider$C0"
android:exported="false">
<meta-data android:name="X-Identity" android:value="Stub-User"/>
</provider>
<!--and so on-->-
Add all permissions your host and your plugins need to use.
-
Goto your Application and insert the following code:
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
try {
VirtualCore.getCore().startup(base);
} catch (Throwable e) {
e.printStackTrace();
}
}- For Install a virtual App, use this function:
VirtualCore.getCore().installApp({APK PATH}, flags);
- For Launch a virtual App, use this function:
VirtualCore.getCore().launchApp({PackageName});- For uninstall a virtual App, use this function:
VirtualCore.getCore().uninstallApp({PackageName});- If you need to get the
details of App, use this function:
VirtualCore.getCore().findApp({PackageName});VirtualApp currently has no documentation, If you are interested in VirtualApp,please send email to me.
LGPL 3.0
Lody (imlody@foxmail.com)
