Skip to content

Commit

Permalink
Fix app link on android
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Dec 28, 2023
1 parent 7eb5735 commit f57ccd2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
8 changes: 6 additions & 2 deletions app/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,15 @@
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="butterfly.linwood.dev" />

<data android:scheme="http" />
<data android:scheme="https" />

<data android:host="butterfly.linwood.dev" />
</intent-filter>
<!-- Custom file extension .bfly -->
<intent-filter>
Expand Down
24 changes: 12 additions & 12 deletions docs/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion fastlane/metadata/android/en-US/changelogs/86.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
* Fix moving data directory ([#562](https://github.com/LinwoodDev/Butterfly/issues/562))
* Fix various issues with the label tool
* Fix display icon
* Fix spread pages settings not being saved
* Fix spread pages settings not being saved
* Fix app link on android

0 comments on commit f57ccd2

Please sign in to comment.