I'm really interested in android scripting on perl/python/lua at my current job, but I'm also very limited in traffic consumption and I may need frequently repeat interpreters install procedure after reflashing android devices. So is there any way to install interpreters in SL4A using prepared files/archives without internet connection?
How to install interpreter for SL4A in offline
3.8k Views Asked by kravitz At
2
There are 2 best solutions below
0

For installing Py4a, I ended up modifying android/PythonForAndroid/src/com/googlecode/pythonforandroid/PythonDescriptor.java
, changing BASE_URL
there into a file:///
URL. I was then able to adb push
the python_*.zip
files into that directory, and install from there.
A key was paying attention to the logcat
error messages. As I had no version files, the code asked for an _r1.zip
always.
Apply the following patch, and then just follow the instructions in the README
file of Py4A to build the APK.
diff --git a/android/PythonForAndroid/src/com/googlecode/pythonforandroid/PythonDescriptor.java b/android/PythonForAndroid/src/com/googlecode/pythonforandroid/PythonDescriptor.java
index a891e98..89bb4f7 100644
--- a/android/PythonForAndroid/src/com/googlecode/pythonforandroid/PythonDescriptor.java
+++ b/android/PythonForAndroid/src/com/googlecode/pythonforandroid/PythonDescriptor.java
@@ -39,7 +39,7 @@ public class PythonDescriptor extends Sl4aHostedInterpreter {
public static final String ENV_EXTRAS = "PY4A_EXTRAS";
public static final String ENV_EGGS = "PYTHON_EGG_CACHE";
public static final String ENV_USERBASE = "PYTHONUSERBASE";
- public static final String BASE_URL = "http://python-for-android.googlecode.com/";
+ public static final String BASE_URL = "file:///data/data/tmp/";
private static final int LATEST_VERSION = -1;
private int cache_version = -1;
private int cache_extras_version = -1;
Once you have the .apk
, go ahead and install everything:
pushd android/PythonForAndroid
adb install -r bin/PythonForAndroid-debug.apk
popd
pushd python-build
adb shell mkdir -p /data/data/tmp/files
adb push python_r16.zip /data/data/tmp/files/python_r-1.zip
adb push python_extras_r14.zip /data/data/tmp/files/python_extras_r-1.zip
adb push python_scripts_r13.zip /data/data/tmp/files/python_scripts_r-1.zip
popd
The final step is to launch Py4A, and poke Install
.
The straightforward way that I found is to install everything in online mode once, then compress the contents of directories:
And make any subsequent install using following batch script (Windows)