广告未在发布模式中显示

Ads are not showing up in release mode

我想尝试这里提到的解决方案,但我不知道如何

当应用程序在调试中登录时它显示广告,但在发布模式下不显示

在您的 android/app 目录中创建一个名为 proguard-rules.pro 的文件。

向其中添加这行代码:

 -keep class io.flutter.app.** { *; }
 -keep class io.flutter.plugin.** { *; }
 -keep class io.flutter.util.** { *; }
 -keep class io.flutter.view.** { *; }
 -keep class io.flutter.** { *; }
 -keep class io.flutter.plugins.** { *; }
 -keep class com.google.firebase.** { *; }
 -keep class com.shatsy.** { *; }

最重要的是:-keep class com.google.firebase.** { *; }-keep class com.shatsy.** { *; }

现在在您的应用级别 build.gradle 文件中,将其添加到您的 buildType 中:

proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

因此您的 buildType 文件夹看起来像这样:

buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.debug
        }
    }

然后运行 flutter build apk --buildTypeName

示例:

flutter build apk --release

一个更快的解决方案是将 minifyEnabled false 添加到您的应用级别 build.gradle

中的发布 buildType

说明:Proguard 可能会阻止您的应用程序使用 firebase_ads 库。这可能就是为什么您的应用 运行 处于调试模式,但在构建 apk 之后却没有。

试一试,看看是否有效。

在发布版本上显示广告需要几个小时。因此,如果它在调试 apk 上运行,那么您无需添加任何代码,只需在 AdMob 上更新您的帐户详细信息并等待帐户确认,您将在几个小时后看到发布的广告。

我遇到了同样的问题,那是我的错误,我没有添加互联网权限。 如果您的应用程序代码需要访问 Internet,请添加 android.permission.INTERNET 权限。标准模板不包含此标记,但允许在开发期间访问 Internet 以启用 Flutter 工具和 运行 应用程序之间的通信。

步骤 1: 转到 android\app\src\main\AndroidManifest。xml

第 2 步: 复制下面这一行:

<uses-permission android:name="android.permission.INTERNET" />

第3步:放入AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.java2blog.helloworldapp">

    <uses-permission android:name="android.permission.INTERNET" /> 

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".HelloWorldActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
 
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
 
</manifest>

第 4 步: 重建 .apk 并在移动设备上尝试它应该可以工作。