Requirements

Qt Digital Advertising plugin to run needs to meet following requirements:

Internet

Internet connection is needed for a communication with the ad server.

Google play services for Android apps

If you intend build an Android Application with Qt digital ads enabled, google play services dependency has to be mandatorily specified. Here is an example https://github.com/qt-io/qt-board-games/blob/main/android/build.gradle

specifically,

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. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.