Authentication on Android devices not working properly
After setting up Kinde sdk for my flutter app, i'm getting this on my android device whenever i try to hit the login button:
Invalid Callback URL
Looks like the allowed callback URLs in your Kinde application don't include the one below:
You provided: com.example.deploy_test://kinde_callback
You can find attached my .env file and my Kinde admin panel configurations
here is my build.gradle config:
defaultConfig {
applicationId "com.example.deploy_test"
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
manifestPlaceholders += [
'appAuthRedirectScheme': 'com.example.deploy_test'
]
}
Invalid Callback URL
Looks like the allowed callback URLs in your Kinde application don't include the one below:
You provided: com.example.deploy_test://kinde_callback
You can find attached my .env file and my Kinde admin panel configurations
here is my build.gradle config:
defaultConfig {
applicationId "com.example.deploy_test"
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
manifestPlaceholders += [
'appAuthRedirectScheme': 'com.example.deploy_test'
]
}

