- 授权协议: LGPL
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/asLody/VirtualApp
- 软件文档: https://github.com/asLody/VirtualApp/blob/master/CHINESE.md
软件介绍
类似LBE平行空间, VirtualApp是一个App虚拟引擎的开源实现。 VirtualApp在你的App进程内创建一个虚拟空间,你可以在虚拟空间内任意的安装、启动和卸载APK, 这一切都与外部隔离,就如同一个沙盒。VirtualApp亦是一个插件化框架,运行在VirtualApp的插件不需要任何的约束。
快速开始
VirtualApp 使用了
@hide API, 因此你必须使用我们的android.jar来替换你已有的那个 (Android-SDK/platforms/android-23/{android.jar}).在你的
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-->
Google's PageRank and Beyond
Amy N. Langville、Carl D. Meyer / Princeton University Press / 2006-7-23 / USD 57.50
Why doesn't your home page appear on the first page of search results, even when you query your own name? How do other web pages always appear at the top? What creates these powerful rankings? And how......一起来看看 《Google's PageRank and Beyond》 这本书的介绍吧!
