throws SecurityException when signing with the default debug keystore
Posted
by Omer
on Stack Overflow
See other posts from Stack Overflow
or by Omer
Published on 2010-03-10T19:51:37Z
Indexed on
2010/05/20
8:20 UTC
Read the original article
Hit count: 326
android
|android-sdk
I am receiving a SecurityException since yesterday when I launch the service using signature protection level for permission with the default debug keystore. The strange thing is I wasn't receiving this error before yesterday and I didn't make any security related change.
On the other hand, my own keystore using for releases is still working good. Related AndroidManifest.xml part:
<permission android:name="com.my.app.privateservices"
android:protectionLevel="signature" />
<service android:name=".MyService"
android:permission="com.my.app.privateservices" />
© Stack Overflow or respective owner