On Apr 17, 6:24 am, Ask <[email protected]> wrote: > The application will be residing in the /sdcard/ and I am loading it > dynamically using PathClassLoader API. > and using Method.invoke() function I am invoking the method residing > in that class.
Presumably you are running as root, and/or have changed the permissions on /data/dalvik-cache. If you have the 1.5 "early look" SDK, you can start using DexClassLoader, which allows you to choose where the output of "dexopt" will go. You should probably use the app's private storage area on /data rather than /sdcard if that's feasible. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

