Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Just use the DEFAULT category, the BROWSABLE category <strike>is</strike> might be causing the problem.</p> <p>Add a <code>.*.ics</code> path pattern to capture any files that have been given the wrong mime type by the server</p> <p>Put all the data matching into the same filter</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.splitbrain.giraffe" android:versionName="0.31" android:versionCode="4"&gt; &lt;uses-sdk android:minSdkVersion="4" /&gt; &lt;uses-permission android:name="android.permission.INTERNET"&gt;&lt;/uses-permission&gt; &lt;application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.Light.NoTitleBar"&gt; &lt;activity android:label="@string/app_name" android:name="MainActivity"&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;intent-filter&gt; &lt;action android:name="android.intent.action.VIEW" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;data android:mimeType="text/calendar" /&gt; &lt;data android:scheme="webcal" /&gt; &lt;data android:pathPattern=".*.ics" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name="OptionsActivity"&gt;&lt;/activity&gt; &lt;activity android:name="DetailActivity"&gt;&lt;/activity&gt; &lt;activity android:name="AboutActivity"&gt;&lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre>
    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. 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