I have integrated juspay payment gateway in my project, recently I have added Android App Link in my project and don't know somehow juspay dependency is affecting Android App Link result, my app link is not working with Juspay dependency in gradle, If remove Juspay dependency from the Gradle then App link will works perfect.
Asked
Active
Viewed 156 times
1
-
Can you add Gradle console output that shows what exactly are the errors? – ULazdins Nov 25 '19 at 16:03
-
@ULazdins Thing is when I'm adding juspay dependency in gradle it'll sync successfully but don't know it is stopping App link to work, If I remove my App link will work, before adding juspay app link open application without asking preference, after adding juspay it's asking for app preference. – Udit amreliya Nov 28 '19 at 07:20
1 Answers
1
Juspay sdk internally has auto verify flag set to true. What this means is that they are trying to verify their Url with your app credentials and failing.
According to app links doc, even if 99 are URLs verified out of 100. Android treats every other URL unverified because of one verification failure. Also, if you set autoverify=true on one intent filter, android will try and verify every URL mentioned in intentfilters without autoverify=true
I faced the same situation and asked them to add our apk key to their assetlinks.json file.

amalBit
- 12,041
- 6
- 77
- 94
-
1Thank you @amalBit After facing Applink issue we have reached to Juspay team and they have resolved issue from their side, also they have solved for all. Now, Nobody will face the same issue further. – Udit amreliya Dec 24 '19 at 11:43