saket
06/17/2021, 1:48 PMInfo.plist
and adding these entries:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>PACKAGE NAME OF YOUR APP</string>
<key>CFBundleURLSchemes</key>
<array>
<string>SCHEME OF YOUR DEEPLINK</string>
</array>
</dict>
</array>
This deeplink can be handled by using Desktop.getDesktop().setOpenURIHandler()
.
Of course modifying the file manually after each build is terrible so we’d need a way for compose to provide a hook for modifying info.plist
. This looks related to: https://github.com/JetBrains/compose-jb/issues/773olonho
06/18/2021, 7:31 AMsaket
06/18/2021, 1:38 PM