changeyourname / pandroid

Automatically exported from code.google.com/p/pandroid
0 stars 0 forks source link

Music and Contacts apps crash #13

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Install and run L27.12.1-P2 on a Pandaboard following the wiki
2. Click on Music or Contacts app in the Launcher

What is the expected output? What do you see instead?
Apps should start normally.
Instead, they crash, logcat reporting a complain about a 
ResourceNotFoundException (which does not make sense to me)

Original issue reported on code.google.com by atisser...@gmail.com on 15 Jun 2011 at 1:06

GoogleCodeExporter commented 8 years ago
Are you build release? If so please take a look withing the patches directory 
for music.apk fix. There is a patch that will change out 
mydroid/packages/app/Music/res/*.touch* to notouch options. This notouch option 
will fix the issues you are seeing. 

Please test and repost findings... I'll update wiki build page to include this 
fix.

Original comment by orbarro...@gmail.com on 15 Jun 2011 at 2:13

GoogleCodeExporter commented 8 years ago
Oh ok I didn't get it. Great, it works. So we have to do the same for Contacts 
and Phone app, which are crashing the same way. Quick fix from your $MYDROID 
directory instead of multiple patches:

for i in packages/apps/* ; do for j in `ls $i/res/ | grep finger`; do 
a=$i/res/$j; cp -r $a ${a/finger/notouch}; done ; done

Alexandre

Original comment by atisser...@gmail.com on 15 Jun 2011 at 7:22

GoogleCodeExporter commented 8 years ago
Alexandre,

We are planning on updating that patch next week. There is a better fix...

Thanks for doing some test and getting back with us.

Original comment by orbarro...@gmail.com on 16 Jun 2011 at 8:27