Java.lang.SecurityException: Not Allowed To Start Service Intent
hey all when installing my app to the emulator I get this: ERROR/AndroidRuntime(465): java.lang.RuntimeException: Unable to start receiver com.myPackage.Widget.MYWidget: java.lang
Solution 1:
Get rid of:
android:permission="android.permission.BIND_REMOTEVIEWS"
android:exported="true"
from your <service>
element, as neither are needed here. This should clear up your problem.
Post a Comment for "Java.lang.SecurityException: Not Allowed To Start Service Intent"