Note that there are some explanatory texts on larger screens.

plurals
  1. PONot allowed to load local resource: file:///android_res/raw/styles.css at :0
    text
    copied!<p>I'm trying to install my app on an HTC, android ver 2.2, device via gmail. The app is signed. After installaion complete I get a messge about "waiting for debuger" and the app failed. in the LogCat i get the following messages:</p> <pre><code>09-30 11:29:33.512 I/ActivityManager(161): Starting activity: Intent { act=android.intent.action.MAIN flg=0x10000000 cmp=com.zezebra/.ui.SplashScreenActivity } 09-30 11:29:33.542 I/ActivityManager(161): Start proc com.zezebra for activity com.zezebra/.ui.SplashScreenActivity: pid=2695 uid=10072 gids={3003, 1015} 09-30 11:29:33.602 D/Sensors (161): close_akm, fd=141 09-30 11:29:33.612 D/dalvikvm(129): GC_EXPLICIT freed 296 objects / 11264 bytes in 76ms 09-30 11:29:33.642 W/ActivityThread(2695): Application com.zezebra is waiting for the debugger on port 8100... 09-30 11:29:33.652 I/System.out(2695): Sending WAIT chunk 09-30 11:29:33.722 D/dalvikvm(129): GC_EXPLICIT freed 52 objects / 2288 bytes in 114ms 09-30 11:29:33.792 E/Web Console(1056): Not allowed to load local resource: file:///android_res/raw/styles.css at :0 09-30 11:29:33.832 D/dalvikvm(129): GC_EXPLICIT freed 2 objects / 64 bytes in 112ms 09-30 11:29:34.062 D/AK8973 (136): Compass CLOSE 09-30 11:29:35.732 I/Process (161): Sending signal. PID: 2695 SIG: 9 09-30 11:29:35.732 W/ActivityManager(161): Force finishing activity com.zezebra/.ui.SplashScreenActivity 09-30 11:29:35.732 I/ActivityManager(161): Killing com.zezebra (pid=2695): user's request </code></pre> <p>How it can be solved?</p> <p>the manifest is:</p> <blockquote> <p> </p> </blockquote> <pre><code>&lt;uses-sdk android:minSdkVersion="8" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-permission android:name="android.permission.READ_CONTACTS" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="android.permission.BATTERY_STATS" /&gt; &lt;uses-permission android:name="android.permission.VIBRATE" /&gt; &lt;uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /&gt; &lt;application android:name=".util.ApplicationContext" android:icon="@drawable/icon_app" android:label="@string/app_name" android:debuggable="false"&gt; &lt;activity android:name=".ui.MainTabsActivity" android:clearTaskOnLaunch="true" android:label="@string/app_name" android:launchMode="singleTop" android:screenOrientation="portrait" &gt; &lt;intent-filter&gt; &lt;action android:name="com.zezebra.START_DOWNLOAD" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;category android:name="android.intent.category.BROWSABLE" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;data android:host="www.zezebra.com" android:pathPrefix="/mobile/" android:scheme="http" /&gt; &lt;action android:name="android.intent.action.VIEW" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;category android:name="android.intent.category.BROWSABLE" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.SEND" /&gt; &lt;action android:name="android.intent.action.SEND_MULTIPLE" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;data android:mimeType="image/*" /&gt; &lt;data android:mimeType="audio/*"/&gt; &lt;data android:mimeType="video/*"/&gt; &lt;!-- data android:mimeType="text/*"/ --&gt; &lt;data android:mimeType="application/*"/&gt; &lt;data android:mimeType="model/*"/&gt; &lt;data android:mimeType="drawing/*"/&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name=".ui.ProfileSetupActivity" android:launchMode="singleTop" android:screenOrientation="portrait" &gt; &lt;/activity&gt; &lt;activity android:name=".ui.FileBrowserActivity" android:launchMode="singleTop" android:screenOrientation="portrait" &gt; &lt;/activity&gt; &lt;activity android:name=".ui.ChooseContactsActivity" android:launchMode="singleTop" android:screenOrientation="portrait" android:windowSoftInputMode="stateAlwaysVisible" &gt; &lt;/activity&gt; &lt;service android:name=".transfer.TransferService" &gt; &lt;/service&gt; &lt;activity android:name=".ui.SettingsActivity" android:launchMode="singleTop" android:screenOrientation="portrait" &gt; &lt;/activity&gt; &lt;receiver android:name=".transfer.BootBroadcastReceiver" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.BOOT_COMPLETED" /&gt; &lt;/intent-filter&gt; &lt;/receiver&gt; &lt;activity android:name=".ui.HistoryActivity" android:launchMode="singleTop" android:screenOrientation="portrait" &gt; &lt;/activity&gt; &lt;activity android:name=".ui.SplashScreenActivity" android:launchMode="singleTop" android:screenOrientation="portrait" android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" &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;/application&gt; </code></pre> <p></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