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: README.rst
+17-18Lines changed: 17 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Buildozer currently supports packaging for Android via the `python-for-android
12
12
<http://github.com/kivy/python-for-android/>`_
13
13
project, and for iOS via the kivy-ios project. iOS and OSX are still under work.
14
14
15
-
For Android: please have a look at `Android-SDK-NDK-Informations
15
+
For Android: please have a look at `Android-SDK-NDK-Informations
16
16
<https://github.com/kivy/kivy/wiki/Android-SDK-NDK-Informations>`_. Please note that
17
17
the default SDK/NDK coded in Buildozer works for Python 2.
18
18
@@ -42,7 +42,7 @@ Installing Buildozer with python2 support:
42
42
43
43
buildozer init
44
44
# edit the buildozer.spec, then
45
-
buildozer android_new debug deploy run
45
+
buildozer android debug deploy run
46
46
47
47
Installing Buildozer with python3 support:
48
48
------------------------------------------
@@ -71,10 +71,9 @@ The pip package does not yet support python3.
71
71
72
72
#. Finally, build, deploy and run the app on your phone::
73
73
74
-
buildozer android_new debug deploy run
75
-
76
-
#. Please note the "android_new" buildozer target, and use that for any and all buildozer commands you run (even if the docs just say "android"). Python3 only works with the **android_new** toolchain.
74
+
buildozer android debug deploy run
77
75
76
+
#. Please note the "android" buildozer target, and use that for any and all buildozer commands you run (even if the docs just say "android").
78
77
79
78
80
79
Examples of Buildozer commands:
@@ -83,17 +82,17 @@ Examples of Buildozer commands:
83
82
::
84
83
85
84
# buildozer target command
86
-
buildozer android_new clean
87
-
buildozer android_new update
88
-
buildozer android_new deploy
89
-
buildozer android_new debug
90
-
buildozer android_new release
85
+
buildozer android clean
86
+
buildozer android update
87
+
buildozer android deploy
88
+
buildozer android debug
89
+
buildozer android release
91
90
92
91
# or all in one (compile in debug, deploy on device)
93
-
buildozer android_new debug deploy
92
+
buildozer android debug deploy
94
93
95
94
# set the default command if nothing set
96
-
buildozer setdefault android_new debug deploy run
95
+
buildozer setdefault android debug deploy run
97
96
98
97
99
98
Usage
@@ -106,9 +105,9 @@ Usage
106
105
buildozer --version
107
106
108
107
Available targets:
109
-
android Android target, based on python-for-android project (old toolchain)
110
-
ios iOS target, based on kivy-ios project
111
-
android_newAndroid target, based on python-for-android project (new toolchain)
108
+
android Android target, based on python-for-android project
109
+
ios iOS target, based on kivy-ios project
110
+
android_old Android target, based on python-for-android project (old toolchain)
112
111
113
112
Global commands (without target):
114
113
distclean Clean the whole Buildozer environment.
@@ -127,7 +126,7 @@ Usage
127
126
run Run the application on the device
128
127
serve Serve the bin directory via SimpleHTTPServer
129
128
130
-
Target "android" commands:
129
+
Target "android_old" commands:
131
130
adb Run adb from the Android SDK. Args must come after --, or
132
131
use --alias to make an alias
133
132
logcat Show the log from the device
@@ -136,7 +135,7 @@ Usage
136
135
list_identities List the available identities to use for signing.
137
136
xcode Open the xcode project.
138
137
139
-
Target "android_new" commands:
138
+
Target "android" commands:
140
139
adb Run adb from the Android SDK. Args must come after --, or
141
140
use --alias to make an alias
142
141
logcat Show the log from the device
@@ -196,7 +195,7 @@ Using your devices via the VM
196
195
There is a little icon on the bottom left that represent an USB plug.
197
196
Select it, and select your android device on it. Then you can check:
198
197
199
-
- `buildozer android_new adb -- devices`
198
+
- `buildozer android adb -- devices`
200
199
201
200
If it doesn't, use Google. They are so many differents way / issues
202
201
depending your phone that Google will be your only source of
0 commit comments