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

<data> tag failed #396

Open
jaredgreener opened this issue Feb 9, 2024 · 3 comments
Open

<data> tag failed #396

jaredgreener opened this issue Feb 9, 2024 · 3 comments

Comments

@jaredgreener
Copy link

jaredgreener commented Feb 9, 2024

Play.google.console deeplinks is complaining about my Android Manifest.xml file:

Deep link not working
Users will not go directly to your app. Once you have fixed these issues and published a new version, users need to update their app before the links will work.

FIX MANIFEST ISSUES
tag failed
Add a "/" to the beginning of the android:path attribute in the tag. The attribute might also be android:pathPrefix or android:pathPattern.

Below is my Manifest file section for apple login:

<activity
                android:name="com.aboutyou.dart_packages.sign_in_with_apple.SignInWithAppleCallback"
                android:exported="true">

            <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="signinwithapple"
                      android:path="callback" />
            </intent-filter>
        </activity>
@jinal-dev
Copy link

Same issue. @jaredgreener did you find any solution about it?

@HenriBeck
Copy link
Member

We haven't seen the issue, but did you try the fix mentioned by the Play Console to add a leading / to the android:path attribute?

Could you please post your complete AndroidManifest file?

@pxsanghyo
Copy link

Same issue. Is the recommended fix to android:path="callback" to android:path="/callback" ? @jaredgreener, @jinal-dev did that recommended fix work?

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

4 participants