Skip to content

Commit

Permalink
Fix opening URL
Browse files Browse the repository at this point in the history
  • Loading branch information
levinli303 committed Feb 23, 2021
1 parent 10bcb94 commit 281928e
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="space.celestia.mobilecelestia"
android:versionCode="153"
android:versionName="1.2.5">
android:versionCode="156"
android:versionName="1.2.6">

<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<uses-permission android:name="android.permission.INTERNET"/>
Expand Down Expand Up @@ -96,4 +96,14 @@
</provider>
</application>

<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http" />
</intent>
</queries>
</manifest>

0 comments on commit 281928e

Please sign in to comment.