godot-admob-android
godot-admob-android copied to clipboard
PoingGodotAdMob not found
Godot version
4.2.2
Plugin version
3.1.1
Phone information
Samsung Galaxy S20 Ultra - Android 13
Issue description
adb logcat -s godot
produces this log
06-18 10:36:09.310 13472 13539 E godot : PoingGodotAdMob not found, make sure you marked all 'PoingAdMob' plugins on export tab
06-18 10:36:09.313 13472 13539 E godot : PoingGodotAdMobAdSize not found, make sure you marked all 'PoingAdMob' plugins on export tab
06-18 10:36:09.342 13472 13539 E godot : PoingGodotAdMobAdView not found, make sure you marked all 'PoingAdMob' plugins on export tab
I see no options to mark anything in export tab.
Steps to reproduce
- Install
- Set up
- Debug on Android
- Attach logcat
Additional context
extends Node
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
MobileAds.initialize()
var unit_id: String
if OS.get_name() == "Android":
unit_id = "ca-app-pub-xxxxxxxxxxxxxxxxxxxxxxxxx"
var ad_view := AdView.new(unit_id, AdSize.BANNER, AdPosition.Values.TOP)
ad_view.load_ad(AdRequest.new())