mirror of
https://github.com/sismics/docs.git
synced 2025-12-28 09:01:45 +00:00
Android: filtering intents with an URL to Docs is not possible
The Android platform forces to specify a full hostname which is variable in our case
This commit is contained in:
@@ -18,14 +18,12 @@
|
||||
android:label="@string/app_name" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:logo="@drawable/ic_launcher"
|
||||
android:launchMode="singleTop">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEARCH" />
|
||||
@@ -33,14 +31,12 @@
|
||||
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.DocumentActivity"
|
||||
android:label=""
|
||||
android:logo="@drawable/ic_launcher">
|
||||
android:name=".activity.DocumentViewActivity"
|
||||
android:label="">
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.DocumentEditActivity"
|
||||
android:label="@string/new_document"
|
||||
android:logo="@drawable/ic_launcher">
|
||||
android:label="@string/new_document">
|
||||
</activity>
|
||||
<provider android:name=".provider.RecentSuggestionsProvider"
|
||||
android:exported="false"
|
||||
|
||||
Reference in New Issue
Block a user