Firebase Authentication with Apple sign in Flutter works for iOS but not working for Android
When I trigger the Apple Sign in with the below codes: Future<UserCredential> signInWithApple() async { final appleProvider = AppleAuthProvider(); appleProvider.addScope('email'); // appleProvider.setCustomParameters({ // 'client_id': 'com......firebase', // service ID // }); // client_id is reserved return await FirebaseAuth.instance.signInWithProvider(appleProvider); } It launches…