Skip to content

Commit f8901e9

Browse files
committed
Merge branch 'master' of github.com:kivy/python-for-android
2 parents 18f1af3 + c31703a commit f8901e9

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

distribute.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function push_arm() {
9999

100100
# this must be something depending of the API level of Android
101101
export PATH="$ANDROIDNDK/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/:$ANDROIDNDK:$ANDROIDSDK/tools:$PATH"
102-
if [ "X${ANDROIDNDKVER:0:2}" == "Xr7" ]; then
102+
if [ "X${ANDROIDNDKVER:0:2}" == "Xr7" ] || [ "X$ANDROIDNDKVER" == "Xr8" ]; then
103103
export TOOLCHAIN_PREFIX=arm-linux-androideabi
104104
export TOOLCHAIN_VERSION=4.4.3
105105
elif [ "X$ANDROIDNDKVER" == "Xr5b" ]; then

docs/source/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Python for android is a project to create your own Python distribution
1010
including the modules you want, and create an apk including python, libs, and
1111
your application.
1212

13-
- Forum: https://groups.google.com/forum/?hl=fr#!forum/python-android
13+
- Forum: https://groups.google.com/forum/#!forum/python-android
1414
- Mailing list: python-android@googlegroups.com
1515

1616
.. toctree::
@@ -25,6 +25,7 @@ your application.
2525
recipes.rst
2626
android.rst
2727
related.rst
28+
faq.rst
2829

2930
Indices and tables
3031
==================

recipes/sqlite3/recipe.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ function prebuild_sqlite3() {
1212

1313
function build_sqlite3() {
1414
cd $SRC_PATH/jni
15+
push_arm
1516
try ndk-build V=1 sqlite3
17+
pop_arm
1618
}
1719

1820
function postbuild_sqlite3() {

0 commit comments

Comments
 (0)