I am developing a system app, I am trying to use the following https://groups.google.com/group/Android-DevPhone-Updating/tree/browse_frm/month/2010-04?_done=/group/Android-DevPhone-Updating/browse_frm/month/2010-04?&&pli=1
Which says...
- In the AndroidManifest.xml of your application: under the element add the attribute android:sharedUserId="android.uid.system".
- Export an unsigned version of your Android application using Eclipse: right-click on the project >> Android Tools >> Export Unsigned Application Package.
- Use /out/host//framework/ signapk.jar to sign your app using platform.x509.pem and platform.pk8 in /build/target/product/security generated earlier: java -jar signapk.jar platform.x509.pem platform.pk8 YourApp-unsigned.apk YourApp-signed.apk.
I can get this working well for a java app, but when I repeat the procedure for a mono app and everything compiles but as soon as you try and run the app on the device it crashes.
Any idea how to get a system app working for mono?
Thanks in advance
Rowan