skip to Main Content

Dynamic lookup for intent failed for action: com.google.android.gms.ads.service.START – Flutter

I tried to use AdMob with test ads in flutter. I always receive code 3 ......................................................................... android/build.gradle minSdkVersion 19 targetSdkVersion 33 dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation platform('com.google.firebase:firebase-bom:31.2.0') implementation 'com.google.firebase:firebase-analytics' implementation 'com.google.firebase:firebase-auth' implementation 'com.google.android.gms:play-services-auth:20.4.1' implementation 'com.google.android.gms:play-services-ads-identifier:18.0.1' implementation 'com.google.android.gms:play-services-gcm:17.0.0' implementation 'com.google.android.gms:play-services-ads:21.5.0' }…

VIEW QUESTION

Flutter GoRouter with Firebase Auth

I am using the go_router and Firebase Auth for my web application but can not properly set it up. I tried this: class AuthService { static final FirebaseAuth _firebaseAuth = FirebaseAuth.instance; static User? get currentUser => FirebaseAuth.instance.currentUser; static bool isLoggedIn()…

VIEW QUESTION
Back To Top
Search