riku99

Results 6 comments of riku99

I also faced the same issue and after some investigation, I suspect the problem might be caused by the `-fcxx-modules` in the podspec. Making the following changes resulted in a...

@mohdzaifquraishi-greenapex @curtisgibeaut @bicanezin Try putting this in the ext block of android/build.gradle. ``` googlePlayServicesVersion = "21.0.1" ```

@LinaEfer You might want to try modifying the build.gradle file of react-native-geolocation-service directly. Change this line: ``` implementation "com.google.android.gms:play-services-location:$googlePlayServicesVersion" ``` to: ``` implementation "com.google.android.gms:play-services-location:21.0.1" ``` However, I haven't actually tested...

Change this codes ``` if ([[config allKeys] containsObject:@"tagForChildDirectedTreatment"]) { NSNumber *tag = [config valueForKey:@"tagForChildDirectedTreatment"]; [[[GADMobileAds sharedInstance] requestConfiguration] tagForChildDirectedTreatment:tag.boolValue]; }; if ([[config allKeys] containsObject:@"tagForUnderAgeConsent"]) { NSNumber *tagC = [config valueForKey:@"tagForUnderAgeConsent"]; [[[GADMobileAds...