pombreda / android-scripting

Automatically exported from code.google.com/p/android-scripting
0 stars 0 forks source link

SL4A facades should use namespaces #693

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Currently all facades bring methods into a global namespace.  It would be nice 
to be able to "package" or put facades in their own namespace. 

For instance:

import android
droid = android.Android()
droid.bluetooth.getLocalAddress()
droid.phone.call("8675309")
# etc...
droid.myfacade.foo()

Original issue reported on code.google.com by FrmDst...@gmail.com on 13 Aug 2013 at 3:06