android.Android() on QPython error

3.6k Views Asked by At

I'm running SL4A Python 2.6.2 interpreter. This code works without problem:

import android
droid = android.Android()

But when I'm running QPython 2.7.2 interpreter on the same machine, the same code gives me error:

AttributeError: 'module' object has no attribute 'Android'
1

There are 1 best solutions below

0
On

import androidhelper instead.

import androidhelper
droid = androidhelper.Android()