[android-developers] Re: Does DexClassLoader works correctly?

2009-11-03 Thread fadden
On Nov 1, 3:54 am, mongd wrote: > So, do you mean if I use a different path for the 2nd parameter, > DexClassLoader should work properly, right? > How about "data/app-private"? Is it ok to use that path? > I tried the above one, but it didn't work... T^T /data/app-private is: drwxrwx--x system

[android-developers] Re: Does DexClassLoader works correctly?

2009-10-29 Thread fadden
On Oct 29, 1:02 am, mongd wrote: > DexClassLoader dLoader = new DexClassLoader("/data/app/ > com.testpackage.test2.apk", "/data/dalvik-cache", null, Your application doesn't have write permission on /data/dalvik-cache. It can't create a file there. You should either use your app's private data

[android-developers] Re: Does DexClassLoader works correctly?

2009-11-01 Thread mongd
So, do you mean if I use a different path for the 2nd parameter, DexClassLoader should work properly, right? How about "data/app-private"? Is it ok to use that path? I tried the above one, but it didn't work... T^T On 10월30일, 오전4시26분, fadden wrote: > On Oct 29, 1:02 am, mongd wrote: > > > DexCla