-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.xml
executable file
·68 lines (57 loc) · 2.73 KB
/
install.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:orientation="vertical"
android:gravity="center"
android:background="#000000"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:textSize="14dip"
android:text=
"Terminal IDE has a basic C / binary system. This is installed into this application's private memory. You DO NOT NEED ROOT access or any other special permissions. \n
\n
When this base system needs to be installed/upgraded with a newer version, you can choose to update when you are ready, here.\n
\n
Just because there is a new version of Terminal IDE in Android Market does NOT mean that there will be a new 'system' to install. This section applies ONLY to the C binaries.\n
\n
The ~/system folder will be DELETED and re-written. You should not be storing your work in there. (this is an internal 'system' folder NOT your main Android system folder.. don't worry)\n
\n
The files ~/.vimrc, ~/.vim, ~/.tmux.conf, ~/.bashrc and mc.ini will NOT BE over-written, but will be created if they don't exist.\n
\n
Also - please make sure you have AT LEAST 150MB of free internal space!\n
\n"/>
<TextView
android:id="@+id/install_sys"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:textColor="#ff0000"
android:textSize="14dip"
android:text=""/>
<CheckBox android:id="@+id/install_overwrite"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="5dip"
android:text=" Overwrite ALL"/>>
<LinearLayout android:orientation="horizontal"
android:gravity="center"
android:paddingTop="10dip"
android:paddingBottom="10dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button android:id="@+id/install_changelog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Change Log"/>
<Button android:id="@+id/install_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Install System"/>
</LinearLayout>
</LinearLayout>
</ScrollView>