Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You have an activity named </p> <pre><code>&lt;activity android:name=".MainMenu"&gt;&lt;/activity&gt; </code></pre> <p>Which is the Intent'ed activity from the launcher. But the activity to which you gave permission is "Mainmenu". Remove it. Add the permission and etc to the ".Mainmenu" which is blank now.</p> <p>ie,</p> <p>The 'activity' group should be</p> <pre><code> &lt;activity android:name=".MainMenu" android:label="@string/app_name" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name=".Diary"&gt;&lt;/activity&gt; &lt;activity android:name=".Info"&gt;&lt;/activity&gt; &lt;activity android:name=".MapMenu"&gt;&lt;/activity&gt; &lt;activity android:name=".RSSMenu"&gt;&lt;/activity&gt; &lt;activity android:name=".DiarySchedule"&gt;&lt;/activity&gt; &lt;activity android:name=".DiaryAddEntry"&gt;&lt;/activity&gt; &lt;activity android:name=".DiaryEditEntry"&gt;&lt;/activity&gt; &lt;activity android:name=".DiaryDetailed"&gt;&lt;/activity&gt; &lt;activity android:name=".RSSDetailed"&gt;&lt;/activity&gt; &lt;uses-library android:name="com.google.android.maps"/&gt; &lt;activity android:name=".MapMain"&gt;&lt;/activity&gt; &lt;activity android:name=".RSSFeedView"&gt;&lt;/activity&gt; &lt;activity android:name=".MapWhatsNearPreferences"&gt;&lt;/activity&gt; &lt;activity android:name=".RoutePath"&gt;&lt;/activity&gt; </code></pre> <p>And remove the duplicates as well. Why did you add so many duplicate 'activities' ?</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload