需求

Qt 数字广告插件运行需要满足以下需求

互联网

与广告服务器通信需要连接互联网。

Android 应用程序的 Google Play 服务

如果您打算构建一个启用 Qt 数字广告的 Android 应用程序,则必须强制指定 Google Play 服务依赖项。以下是一个示例 https://github.com/qt-io/qt-board-games/blob/main/android/build.gradle

具体来说,

repositories {
    maven {
        url "https://qda-maven.s3.us-east-2.amazonaws.com/release/"
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
    implementation 'io.qt.qda:qda:1.0.0@aar'
    implementation ("com.google.android.gms:play-services-ads:22.3.0")
    implementation ("com.google.android.ump:user-messaging-platform:2.1.0")
}

©2024 The Qt Company Ltd. 本文档贡献者是其各自所有者的版权。提供的文档是在自由软件基金会发布并按 GNU 自由文档许可证版本 1.3 的条款下许可的。Qt 和相关标志是 The Qt Company Ltd. 在芬兰以及/或世界其他国家的商标。所有其他商标均为其各自所有者的财产。