Android "no Content Provider Found For Permission Revoke"
Solution 1:
In my case I forgot to define main activity. So, I add the following code inside AndroidManifest.xml main activity.
<intent-filter><actionandroid:name="android.intent.action.MAIN"/><categoryandroid:name="android.intent.category.LAUNCHER"/></intent-filter>
That was the result for Activity definition:
<applicationandroid:icon="@drawable/ic_launcher"android:label="@string/app_name"android:theme="@style/AppTheme" ><activityandroid:name="RssfeedActivity"><intent-filter><actionandroid:name="android.intent.action.MAIN"/><categoryandroid:name="android.intent.category.LAUNCHER"/></intent-filter></activity><activityandroid:name="DetailActivity"></activity></application>
Solution 2:
I think that the problem is with the install directory permissions. /data/local
needs to have write and execute rights to others in order for adb packages to install correctly.
Try this, too: Android - Download App
Solution 3:
I just found solution to Linux, but I not found for Windows, maybe because in Windows the directories and permissions were confused.
It's work for me: Add the user "Everyone" in folder "C://YourUser//.Android//" with full control, then restart the emulador.
Solution 4:
I had the same problem on all of my devices. My problem was from the run configuration, I didn't checked the "launch default Activity".
Solution 5:
I ran into this problem building a new signed APK.
I checked the V2(Full APK signature). Installing the APK on a device did not work anymore.
My solution was to check the V1 (Jar signature) instead. This did work.
Post a Comment for "Android "no Content Provider Found For Permission Revoke""