Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've downloaded and compiled Android 2.1 version with signed-google_ion-ota-14721.zip image for my HTC phone. The compile completed successfully and so the system image flash. How can I sign my own Android application with the system signature?

Can someone describe the whole process for signing a user application with system signature as I am completely new to the signing process.

share|improve this question

2 Answers

up vote 31 down vote accepted

Finally I managed to discover a way to sign my application with the platform signature. You need to use keys located in /build/target/product/security/ and add android:sharedUserId="android.uid.system" in your AndroidManifest.xml file.

For more details check out this google groups thread

share|improve this answer
You can accept your own answer to signalize that you've found a solution for this problem. ;) – Octavian Damiean Sep 6 '10 at 13:11
But /build/target/product/security/ where i can get this path ?? – Ahmed May 15 '12 at 7:00
1  
@user1155908: it is in android os source code. You have to download Android Open Source Project (AOSP): source.android.com/source/downloading.html – m-ric Sep 26 '12 at 19:42

it does not work any more. You need to build your own room to use your own system signed app.

share|improve this answer
1  
This is more a comment than an answer ,is there docs that back up your answer - can you quote them? – Caribou Nov 13 '12 at 8:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.