You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: archon.md
-13Lines changed: 0 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,19 +70,6 @@ Add `"resize": "scale"` to `"arc_metadata"` in `manifest.json`.
70
70
71
71
Read [the manifest guide](manifest.md) for more advanced tweaks.
72
72
73
-
### Windows 32-bit NACL issues
74
-
75
-
TL;DR: use **ARChon 1.1.1**. There is a bug in Windows NACL that prevents applications from running (Issue [#38](https://github.com/vladikoff/chromeos-apk/issues/38)). You need to patch `runnable-ld.so` using a Python script:
76
-
```
77
-
import os
78
-
filename = 'runnable-ld.so'
79
-
size = os.stat(filename).st_size
80
-
fh = open(filename, 'r+b')
81
-
fh.truncate((size + 0xffff) & ~0xffff)
82
-
fh.close()
83
-
exit()
84
-
```
85
-
86
73
### Older downloads
87
74
> These are downloads for previous versions of ARChon
Copy file name to clipboardExpand all lines: multiple-apps.md
+5-18Lines changed: 5 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,23 +3,10 @@
3
3
4
4
*****
5
5
6
-
Currently you can load up to 4 of your favorite Android applications with the official ARC runtime.
7
-
By default the `chromeos-apk` tool replaces the Vine application and everytime you load a different app it replaces it. However you can load 3 more apps by replacing Evernote and other apps. For each extra app adjust the `"key"` value in the `manifest.json` file of that app, then use `"Load unpacked extension..."`.
6
+
~~Currently you can load up to 4 of your favorite Android applications with the official ARC runtime.~~
7
+
~~By default the `chromeos-apk` tool replaces the Vine application and everytime you load a different app it replaces it. However you can load 3 more apps by replacing Evernote and other apps. For each extra app adjust the `"key"` value in the `manifest.json` file of that app, then use `"Load unpacked extension..."`.~~
8
8
9
-
To load unlimited number of apps you need a custom runtime, see the [ARChon runtime guide](archon.md) for details.
0 commit comments