android - Java Package names and conflicts -
a simple question ive realised im not sure of answer one....
if creating android application library package named
com.example.one
and create app , include package name
com.example.one
which has refactored class, cause problems in either of apps?
the reason ask had problem google source code , down fact device manufactorer had included same libs in custom os had used in apk, , not happy! (or told)
if can fill me in here, obviosuly dont understand quite findamental here :)
thankx
edit: link on diff between android , java package names http://blog.javia.org/android-package-name/
actually, shouldn't cause problems in case of 2 separate android apps. android apps run in sandboxes, i.e. classloader of app not see classes of app b , vice-versa. different system wide-libraries. accessible classloader (of course) , cause troubles if have same class in app.
Comments
Post a Comment