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

Help for using with Java #354

Open
mikebgrep opened this issue Aug 27, 2022 · 0 comments
Open

Help for using with Java #354

mikebgrep opened this issue Aug 27, 2022 · 0 comments

Comments

@mikebgrep
Copy link

mikebgrep commented Aug 27, 2022

I add the dependencies and I annotate the Activity like in first example, but it's not found the link any help how I need to proceed with implementation in Java project.
It is only this place I need to set the link @DeepLink("https://www.example.com/{id}")

 Intent intent = getIntent();
        if (intent.getBooleanExtra(DeepLink.IS_DEEP_LINK, false)) {
            Bundle parameters = intent.getExtras();
            link = parameters.getString("id");

        }

Does not return anything, I need this for first start of the app and in the app state and I need the ID.
Thanks
Is not working need help here I can't find an article online to how to use it with java is not opening the deep link
Here is mu filter in SpashActivity

            <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="https" />
            </intent-filter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant