Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open links fogos.pt/fogo/* on app #118

Open
tomahock opened this issue Jul 6, 2020 · 4 comments
Open

Open links fogos.pt/fogo/* on app #118

tomahock opened this issue Jul 6, 2020 · 4 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@tomahock
Copy link
Member

tomahock commented Jul 6, 2020

Not sure how to do it!

@tomahock tomahock added the enhancement New feature or request label Jul 6, 2020
@tomahock tomahock added this to the JUN2020-v2 milestone Jul 6, 2020
@Vanethos
Copy link
Collaborator

Vanethos commented Jul 6, 2020

We can use Universal Links in iOS and App Links (iirc) in Android with this package: uni_links

When opening it, we open the detail, correct?

@Vanethos
Copy link
Collaborator

Vanethos commented Jul 6, 2020

@tomahock we need to create:

  • For iOS:
    a apple-app-site-association file that looks like this:


    {
        "applinks": {
            "apps": [],
            "details": [
                {
                    "appID": "9JA89QQLNQ.com.apple.wwdc",
                    "paths": [ "/wwdc/news/", "/videos/wwdc/2015/*"]
                },
                {
                    "appID": "ABCD1234.com.apple.wwdc",
                    "paths": [ "*" ]
                }
            ]
        }
    }

https://developer.apple.com/library/archive/documentation/General/Conceptual/AppSearch/UniversalLinks.html

  • For Android
[
    {
        "relation": [
            "delegate_permission/common.handle_all_urls"
        ],
        "target": {
            "namespace": "android_app",
            "package_name": "fr.smarquis.applinks",
            "sha256_cert_fingerprints": [
                "6B:41:26:A6:1E:D8:BD:91:D3:8B:57:10:5F:07:5C:2D:AB:3E:26:A4:D1:3C:9C:97:15:78:9E:0D:56:0A:CE:DC"
            ]
        }
    }
]

https://simonmarquis.github.io/Android-App-Linking/#app-links

These need to be hosted in the correct places

@tomahock
Copy link
Member Author

tomahock commented Jul 7, 2020

When opening it, we open the detail, correct?

The detail or in the main map view. depends on the link.

@Vanethos smells like pull request 😇

@Vanethos
Copy link
Collaborator

Vanethos commented Jul 7, 2020

I can surely make it! But I also need your help with it for the hosted files

@Vanethos Vanethos self-assigned this Aug 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants