skip to Main Content

How to add Info.plist file to Xcode for admob, error Multiple commands produce after I added

Multiple commands produce '/Users/gan/Library/Developer/Xcode/DerivedData/xx-fpgsryfzwqufgxcplcdfxrycppjh/Build/Products/Debug-iphonesimulator/xx.app/Info.plist' Target 'xx' (project 'xx') has copy command from '/Users/gan/Downloads/xx/Info.plist' to '/Users/gan/Library/Developer/Xcode/DerivedData/x-xfpgsryfzwqufgxcplcdfxrycppjh/Build/Products/Debug-iphonesimulator/xx.app/Info.plist' Target 'xx' (project 'xx') has process command with output '/Users/gan/Library/Developer/Xcode/DerivedData/xx-fpgsryfzwqufgxcplcdfxrycppjh/Build/Products/Debug-iphonesimulator/xx.app/Info.plist' The file content is: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist…

VIEW QUESTION

Flutter application crsashes after adding google_mobile_ads

After adding google_mobile_ads package in my flutter app the application crashes without showing anything. I have added the required text in the androidManifest file. androidManifest.xml file: <application android:label="ad_prac" android:name="${applicationName}" android:icon="@mipmap/ic_launcher"> <activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize"> <meta-data android:name="io.flutter.embedding.android.NormalTheme"…

VIEW QUESTION

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
Back To Top
Search