Skip to content

Commit

Permalink
Removed the duplicate intent-filter from manifest.
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitMaliDeveloper committed May 8, 2024
1 parent da1853a commit 08f8a2e
Showing 1 changed file with 10 additions and 20 deletions.
30 changes: 10 additions & 20 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,16 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="http" />
<data android:host="download.kiwix.org" />
<data android:pathPrefix="/zim" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="http" />
<data android:host="download.kiwix.org" />
<data android:pathPattern="/.*\\.zim(aa|)" />
Expand Down Expand Up @@ -198,26 +208,6 @@
<data android:host="download.kiwix.org" />
<data android:pathPattern="/.*\\..*\\..*\\..*\\.zim(aa|)" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="http" />
<data android:host="download.kiwix.org" />
<data android:pathPrefix="/zim" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="http" />
<data android:host="download.kiwix.org" />
<data android:pathPrefix="/zim" />
</intent-filter>
</activity>

<receiver
Expand Down

0 comments on commit 08f8a2e

Please sign in to comment.