forked from Cross2pro/VirtualApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md.old
76 lines (57 loc) · 2.27 KB
/
README.md.old
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[](https://github.com/asLody/VirtualApp)
[中国人猛戳这里](CHINESE.md "中文")
About
-----
**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`.
NOTICE
-------
**This project has been authorized by the business.**
**You are not allowed to modify the app module and put to the software market, if you do that, The consequences you know :)**
**VirtualApp is not free, If you need to use the lib code, please send email to me :)**
Background
----------
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`.
Get started
-----------
If you use latest android studio (version 2.0 or above), please disable `Instant Run`.
Open `Setting | Build,Exception,Deployment`, and disable `Enable Instant Run to hot swap...`
**Goto your Application and insert the following code:**
```java
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
try {
VirtualCore.get().startup(base);
} catch (Throwable e) {
e.printStackTrace();
}
}
```
**Install a virtual App:**
```java
VirtualCore.get().installPackage({APK PATH}, flags);
```
**Launch a virtual App:**
```java
//VirtualApp support multi-user-mode which can run multiple instances of a same app.
//if you don't need this feature, just set `{userId}` to 0.
Intent intent = VirtualCore.get().getLaunchIntent({PackageName}, {userId});
VActivityManager.get().startActivity(intent, {userId});
```
**Uninstall a virtual App:**
```java
VirtualCore.get().uninstallPackage({PackageName});
```
More details, please read the source code of demo app, :-)
Documentation
-------------
VirtualApp currently has **no documentation**, If you are interested in VirtualApp, please send email to me.
Contact us
------------