Fedy
KKinde
•Created by Fedy on 5/19/2025 in #💻┃support
Flutter auth, on iOS it is redirecting correctly to home page, but on Android it just loads forever
Hey Claire, great news! thank you so much for pushing that through, I really really appreciate it
14 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly
Hey,
Awesome news! thank you so much for pushing that through! Really appreciate the help. Can’t wait for the release!
19 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly
Thank you so much for that!
19 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly

19 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly
A new Kinde account and a new Flutter app
19 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly
As a last shot I will try everything from scratch
19 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly
Same issue.. Invalid callback URL
19 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly
Building and running a release version...
19 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly
Alright!
19 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly
Can you give me few minutes to remove cache and test again?
19 replies
KKinde
•Created by Fedy on 5/29/2025 in #💻┃support
Authentication on Android devices not working properly
I have created it as a Front and Mobile app, I even created another Kinde account and a new Flutter app and still face the same issue
19 replies
KKinde
•Created by Fedy on 5/19/2025 in #💻┃support
Flutter auth, on iOS it is redirecting correctly to home page, but on Android it just loads forever
Thank you so much for your time, waiting for your updates
14 replies
KKinde
•Created by Fedy on 5/19/2025 in #💻┃support
Flutter auth, on iOS it is redirecting correctly to home page, but on Android it just loads forever
Hello,
Thank you for the update, I really appreciate it. I just wanted to follow up as this is a client project, and I’m trying to ensure everything goes smoothly on my side.
Looking forward to hearing from the engineering team when there’s any progress. Thanks again for your support!
14 replies
KKinde
•Created by Fedy on 5/19/2025 in #💻┃support
Flutter auth, on iOS it is redirecting correctly to home page, but on Android it just loads forever
Hello, any news please? is it possible if I get assistance from the engineering team?
14 replies
KKinde
•Created by Fedy on 5/19/2025 in #💻┃support
Flutter auth, on iOS it is redirecting correctly to home page, but on Android it just loads forever
Thank you so much, I really appreciate your help!
14 replies
KKinde
•Created by Fedy on 5/19/2025 in #💻┃support
Flutter auth, on iOS it is redirecting correctly to home page, but on Android it just loads forever
Hello, thanks again for your answer!
1. I am not using
uni_links
or go_router
with a deep link listener in my app, I have not included anything about deep linking at all!
2. Can you provide me more infos about the url listener inside my Flutter app? Do you mean the initialization of Kinde SDK inside my Flutter app?
3. This is what I get in my console after I try to login: W/AppAuth ( 4047): No stored state - unable to handle response
using correct credentials
Could you precise what do you exactly mean by the URI my app receives from the deep link?
I would love to get a few minutes assistance from the engineering team if possible! Thanks in advance!14 replies
KKinde
•Created by Fedy on 5/19/2025 in #💻┃support
Flutter auth, on iOS it is redirecting correctly to home page, but on Android it just loads forever
1. Callback URL Configuration:
Yes I have specified a callback URL within my
AndroidManifest.xml
:
Snippet:
<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="com.kinde.myapp"
android:host="kinde_callback" />
</intent-filter>
2. Authentication Provider:
I am only using Kinde SDK for authentication (email + code)
3. Console Logs:
I tried debugging using HTTP Toolkit, here is what I got so far as a response:
STATUS:
302 Found
HEADERS
Connection:keep-alive
Content-Length:0
Content-Security-Policy:frame-ancestors 'none'
Date:Sun, 18 May 2025 14:11:42 GMT
Location:com.kinde.myapp://kinde_callback?code=lpAUWPbS5ySw79O90HJq0U3kPKTBFyzarQDEURRTZe4.KlnTJdJmFNuxPH6KN47sdOJN3UIKWvYcnhf6JpOJSjk&scope=email%20profile%20offline%20openid&state=xTFqU7Tczn4FQ6vTqRg07Q
Referrer-Policy:strict-origin-when-cross-origin
Set-Cookie:enduser_session_id=0x60350371af0e4ebd83b5c9e150c92447; Path=/; Domain=mindo.kinde.com; Expires=Mon, 19 May 2025 14:11:42 GMT; HttpOnly; Secure; SameSite=Lax
Vary:Origin
X-Frame-Options:deny
4. Package Configuration:
Here is my intent filter in the AndroidManifest.xml
:
<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="com.kinde.myapp"
android:host="kinde_callback" />
</intent-filter>
By the way my Kinde configuration callback url scheme is different from my app package name, is that okay?
5. Behavior Details:
The login screen keeps spinning forever without crashing or showing any errors on the screen, I have tested on both physical Android device and emulator! Same behavior detected on both!14 replies