我正在尝试在一个简单的Android应用中使用Ti.admob模块。 我下载了它并尝试运行示例代码。
在这里找到:https://github.com/appcelerator-modules/ti.admob/tree/master/android/example
我在tiapp.xml中添加了它
<application>
<activity android:configChanges="keyboardHidden|orientation" android:theme="@android:style/Theme.Translucent"/>
<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-YYYYYYYYYY~XXXXXXXXX"/>
</application>
以及示例文件中:
/ then create an adMob view
var adMobView = Admob.createView({
publisherId:"ca-app-pub-YYYYYYYYYY~XXXXXXXXX",
adUnitId:"ca-app-pub-3940256099942544/6300978111",
testing:false, // default is false
//top: 10, //optional
//left: 0, // optional
//right: 0, // optional
bottom: 0, // optional
adBackgroundColor:"FF8855", // optional
backgroundColorTop: "738000", //optional - Gradient background color at top
borderColor: "#000000", // optional - Border color
textColor: "#000000", // optional - Text color
urlColor: "#00FF00", // optional - URL color
linkColor: "#0000FF" //optional - Link text color
//primaryTextColor: "blue", // deprecated -- now maps to textColor
//secondaryTextColor: "green" // deprecated -- now maps to linkColor
});
//listener for adReceived
adMobView.addEventListener(Admob.AD_RECEIVED,function(){ // alert("ad received");
Ti.API.info("ad received");
});
//listener for adNotReceived
adMobView.addEventListener(Admob.AD_NOT_RECEIVED,function(){
//alert("ad not received");
Ti.API.info("ad not received");});
win.add(adMobView);
尝试在手机上启动它时,ALl似乎没问题,但是日志中存在错误:
[错误]:FA:GoogleService无法初始化,状态:10,名称为google_app_id的字符串资源中缺少google app id值。
有人在Android应用程序中使用admob获得了适用于appcelerator的有效示例吗?
谢谢
答案 0 :(得分:0)
google_app_id
是app/platform/android/res/values/strings.xml
中的一行:
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<string name="google_app_id">1:1234567890:android:1234567890abcdef</string>
</resources>
,例如在Firebase项目中:https://github.com/hansemannn/titanium-firebase#android-notes
创建文件并添加项目ID(来自Firebase控制台的json文件之外)。您在使用Firebase Analytics吗?错误中的FA
部分似乎来自Firebase Analytics,而非Admob。
答案 1 :(得分:0)
我找到了解决方法
在发布者ID中,您必须输入adUnitId!而不是发布者ID!
var adMobView = Admob.createView({ PublisherId:“ ca-app-pub-YYYYYYYYYY〜XXXXXXXXX”, adUnitId:“ ca-app-pub-3940256099942544 / 6300978111”,