如何从app config.xml中删除`key`和`string`以停止显示AdMob?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从app config.xml中删除`key`和`string`以停止显示AdMob?相关的知识,希望对你有一定的参考价值。

我正在尝试设置一个android应用程序项目。

在他们的文档中写道: Simply find and edit res/values/config.xml file in the project folder. Change "banner_ad_unit_id" for Banner ads and "interstitial_add_unit_id" for Interstitial ads and you are finished. If you don't want AdMob in your app, simply remove key and string tags.

但是当我删除字符串的内容或整个字符串时,在这两种情况下我都遇到了很多错误:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="banner_ad_unit_id" translatable="false">ca-app-pub-5514315741534690/1584741164</string>
    <string name="interstitial_ad_unit_id" translatable="false">ca-app-pub-5514315741534690/4538207562</string>
    <string name="ad_app_id" translatable="false">ca-app-pub-5514315741534690~9108007962</string>
    <string name="test_device_id" translatable="false">7170163625397D22C4A4E1FD60819BAF</string>

请记住,我是Android Studio中的新手,所以如果我的问题太简单,我会道歉。

答案

键是“name = abc”,值是“> xyz <”内的值

所以只需删除xyz:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="banner_ad_unit_id" translatable="false"></string>
    <string name="interstitial_ad_unit_id" translatable="false"></string>
    <string name="ad_app_id" translatable="false"></string>
    <string name="test_device_id" translatable="false"></string>

如果您在代码中删除了广告请求,则还可以删除整个部分,因为这些值已经为空且不会发生任何事情。

以上是关于如何从app config.xml中删除`key`和`string`以停止显示AdMob?的主要内容,如果未能解决你的问题,请参考以下文章

Apache cordova / phonegap 如何从 config.xml 启用功能

Translate this app.config xml to code? (WCF) z

如何从 meta_key wordpress 中删除超链接

winform App.Config XML文件的读取和修改

如何从 Spring Boot 应用程序属性加载 Spring config xml $ 值

如何从关联数组中删除键及其值?