Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Could this be your issue?</p> <blockquote> <p>Activity permissions (applied to the tag) restrict who can start the associated activity. The permission is checked during Context.startActivity() and Activity.startActivityForResult(); if the caller does not have the required permission then SecurityException is thrown from the call.</p> </blockquote> <p>(from <a href="http://developer.android.com/guide/topics/security/security.html" rel="nofollow">http://developer.android.com/guide/topics/security/security.html</a>)</p> <p>Maybe try taking all those <code>android:permission="..."</code> attributes out of your <code>&lt;activity&gt;</code> tags.</p> <p>Your Logcat says:</p> <pre><code>03-26 18:21:29.370: W/ActivityManager(142): Permission Denial: starting Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=BIQ.ERP/.BIQActivity } from ProcessRecord{40a88a00 220:com.android.launcher/10038} (pid=220, uid=10038) requires android.permission.INTERNET 03-26 18:21:29.380: E/Launcher(220): Launcher does not have the permission to launch Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=BIQ.ERP/.BIQActivity }. Make sure to create a MAIN intent-filter for the corresponding activity or use the exported attribute for this activity. tag=ApplicationInfo(title=BIQ) intent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=BIQ.ERP/.BIQActivity } 03-26 18:21:29.380: E/Launcher(220): java.lang.SecurityException: Permission Denial: starting Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=BIQ.ERP/.BIQActivity } from ProcessRecord{40a88a00 220:com.android.launcher/10038} (pid=220, uid=10038) requires android.permission.INTERNET </code></pre> <p>I really think you need to take those Internet permissions out of all your Activities. If you read the quote from the Developer Guide that I included above, I think you will see why.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

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