Hi,
It seems my code cannot read an apk File I have created on the Android
emulator.
- First off, I created an sdcard with command 'mksdcard ...'
- then I run this code:
------------- Begin Cut Here --------------->
File tmpdir = new File(tmpdirpath+name);
if (!tmpdir.exists())
{
boolean b = tmpdir.mkdirs();
}
else
{
if (!tmpdir.isDirectory())
{
throw new RuntimeException("here : the tmp dir conflicts");
}
}
File apk = new File(tmpdirpath + name + "/" + name + ".apk");
if (!apk.exists())
{
apk.createNewFile();
}
// with name = name of my apk file.
------------- End Cut Here --------------->
- The apk file is successfully created on a temporary directory on /
sdcard,
but I have no permissions to read it:
- - - - r w - r w -
- I tryed to change them:
# adb shell
# chmod 777 myFile.apk
No error but permissions remain the same
- - - - r w - r w -
and I get the following exception:
04-28 14:56:16.296: ERROR/dalvikvm(231): Can't open dex cache '/data/
dalvik-cache/
[email protected]@[email protected][email protected]':
No such file or directory
04-28 14:56:16.296: INFO/dalvikvm(231): Unable to open or create
cache
for /sdcard/.tmpdir/org.python.pycode._pyx0/
org.python.pycode._pyx0.apk
04-28 14:56:16.306: WARN/System.err(231): java.io.IOException: unable
to open DEX file
04-28 14:56:16.326: WARN/System.err(231): at
dalvik.system.DexFile.openDexFile(Native Method)
04-28 14:56:16.336: WARN/System.err(231): at
dalvik.system.DexFile.<init>(DexFile.java:55)
04-28 14:56:16.346: WARN/System.err(231): at
dalvik.system.DexFile.<init>(DexFile.java:41)
04-28 14:56:16.355: WARN/System.err(231): at
org.python.debug.FixMe.getClassByName(FixMe.java:93)
Can somebody help please?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---