Tagged Questions

331
votes
15answers
115k views

Is there any way to run Python on Android?

I like the Android platform. Actually, with some friends, we even participate to the ADC with the Spoxt project. But Java is not my favourite language at all. We are working on a S60 version and this ...
5
votes
1answer
239 views

Is ASE mature enough to start developing android apps?

I've been checking out the Android Scripting Environment, it looks rather promising. But is it a viable option to make a marketable app in? It seems like the customer would have to download ASE and ...
5
votes
1answer
746 views

Can I port my existing python apps on ASE?

I learned that the Android Scripting Environment (ASE) supports python code. Can I take my existing python programs and run them on android? Apart from the GUI, what else will I need to adapt? How ...
3
votes
1answer
617 views

android python full integration

Is there a way to fully integrate Python with Java code on Android platform? Yes, I saw the question about running Python on Android and Android Scripting Environment (ASE). But that doesn't seem to ...
3
votes
2answers
228 views

Is it possible to use Android scripts created with ASE as typical application for Android (e.g. written in Java)?

I am very very new to Android. I was encouraged to take a closer look at Android when I heard about possbility to write applications on Android in scripting languages like Python. This sounds great ...
2
votes
1answer
645 views

android python scripting: GUI?

Are there basic GUI functions in SL4A? I'd like to run a python program on Android and would need a listbox and simple dialogs (display info and get input). There seem to be simple dialogs, but I ...
2
votes
2answers
266 views

Terminating android ASE shell from within the script

I'm using android scripting environment with python (ASE), and I'd like to terminate the shell executing the script when the script terminates. Is there a good way to do this? I have tried executing ...
2
votes
3answers
270 views

Feedback on using ASE on Android?

Has anyone made use of ASE (Android scripting enviroment) for anything other than proof of concept apps? What are the major limitations? Any feedback would be great.
1
vote
0answers
326 views

Can we use android scripting environment for functional test automation?

I want to automate some of my functional test cases on android , can I use Android scripting environment and use Python / Perl to automate my functional test cases? Thanks AD
1
vote
1answer
126 views

How to get a Device Specific UID using Python in ASE on Android?

I am working on am Android Scripting Environment (ASE) script in Python to replicate an iPhone app. I need a device UID of some sort. My thoughts where a salted MD5 hash of the MAC address or device ...
1
vote
1answer
562 views

How can I interact with the android scripting environment from an android app?

I'd like to use python scripts as plugins for an app I'm developing. This seems to be possible by interacting with android-scripting-environment (ASE), as is done by Locale, but I haven't found any ...
0
votes
1answer
35 views

How to use scanBarcode() from ASE (The Android Scripting Environment) in java (withouth ASE)?

I want to use this barcode scanner from ASE in normal Android application, without using or installing ASE. How can I do this? UPDATE: I do not want use ZXing's Barcode Scanner because of permission ...
0
votes
0answers
31 views

What barcode scanner library use ASE (The Android Scripting Environment) in Android?

You can write this code in ASE: import android droid = android.Android() code = droid.scanBarcode() isbn = int(code['result']['SCAN_RESULT']) url = “http://books.google.com?q=%d” % isbn ...
0
votes
0answers
366 views

Debugging an android app “unable to open Dex File”

Hello I am having some issues with this project I am working on I have troubleshooted a lot to make it work I am not sure what else to do I think the file system on my phone isn't writable so it has ...