簡體   English   中英

Admob在LIBGDX項目中不起作用

[英]Admob is not working in LIBGDX project

我將項目與Firebase廣告相關聯,但無法使用AdView,MobileAds等類。 它顯示無法解析符號(建議:將庫“ play-services-ads-lite:11.2.0”添加到類路徑)。 我直接從Android Studio連接了Firebase。 這是我的兩個階梯。

build.gradle(項目)

 buildscript {


repositories {
    mavenLocal()
    mavenCentral()
    maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.0-alpha4'


    classpath 'com.google.gms:google-services:3.1.0'

  }
}

allprojects {
apply plugin: "eclipse"
apply plugin: "idea"

version = '1.0'
ext {
    appName = "Drunken Bird"
    gdxVersion = '1.9.6'
    roboVMVersion = '2.3.1'
    box2DLightsVersion = '1.4'
    ashleyVersion = '1.7.0'
    aiVersion = '1.8.0'
    admobVersion='8.3.0'
}

repositories {
    mavenLocal()
    mavenCentral()
    maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
    maven { url "https://oss.sonatype.org/content/repositories/releases/"          }
   }
  }

  project(":android") {
apply plugin: "android"

configurations { natives }

dependencies {
    compile project(":core")
    compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
    natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi"
    natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
    natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a"
    natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
    natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64"
    compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
    natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi"
    natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a"
    natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-arm64-v8a"
    natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86"
    natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86_64"


}
 }

   project(":core") {
apply plugin: "java"


dependencies {
    compile "com.badlogicgames.gdx:gdx:$gdxVersion"
    compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"

}
}

 tasks.eclipse.doLast {
delete ".project"
   }

build.gradle(應用程序)

     android {
            buildToolsVersion '26.0.1'
            compileSdkVersion 26
            sourceSets {
                main {
                    manifest.srcFile 'AndroidManifest.xml'
                    java.srcDirs = ['src']
                    aidl.srcDirs = ['src']
                    renderscript.srcDirs = ['src']
                    res.srcDirs = ['res']
                    assets.srcDirs = ['assets']
                    jniLibs.srcDirs = ['libs']
                }

                instrumentTest.setRoot('tests')
            }
            packagingOptions {
                exclude 'META-INF/robovm/ios/robovm.xml'
            }
            defaultConfig {
                applicationId "com.aman.drunkenbird"
                minSdkVersion 14
                targetSdkVersion 26
                versionCode 1
                versionName "1.0"
            }
            buildTypes {
                release {
                    minifyEnabled false
                    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                }
            }
            productFlavors {
            }
        }
        // called every time gradle gets executed, takes the native dependencies of
        // the natives configuration, and extracts them to the proper libs/ folders
        // so they get packed with the APK.
        task copyAndroidNatives() {
            file("libs/armeabi/").mkdirs();
            file("libs/armeabi-v7a/").mkdirs();
            file("libs/arm64-v8a/").mkdirs();
            file("libs/x86_64/").mkdirs();
            file("libs/x86/").mkdirs();

            configurations.natives.files.each { jar ->
                def outputDir = null
                if (jar.name.endsWith("natives-arm64-v8a.jar")) outputDir = file("libs/arm64-v8a")
                if (jar.name.endsWith("natives-armeabi-v7a.jar")) outputDir = file("libs/armeabi-v7a")
                if (jar.name.endsWith("natives-armeabi.jar")) outputDir = file("libs/armeabi")
                if (jar.name.endsWith("natives-x86_64.jar")) outputDir = file("libs/x86_64")
                if (jar.name.endsWith("natives-x86.jar")) outputDir = file("libs/x86")
                if (outputDir != null) {
                    copy {
                        from zipTree(jar)
                        into outputDir
                        include "*.so"
                    }
                }
            }
        }
        task run(type: Exec) {
            def path
            def localProperties = project.file("../local.properties")
            if (localProperties.exists()) {
                Properties properties = new Properties()
                localProperties.withInputStream { instr ->
                    properties.load(instr)
                }
                def sdkDir = properties.getProperty('sdk.dir')
                if (sdkDir) {
                    path = sdkDir
                } else {
                    path = "$System.env.ANDROID_HOME"
                }
            } else {
                path = "$System.env.ANDROID_HOME"
            }

            def adb = path + "/platform-tools/adb"
            commandLine "$adb", 'shell', 'am', 'start', '-n', 'com.aman.drunkenbird/com.aman.drunkenbird.AndroidLauncher'
        }
        // sets up the Android Eclipse project, using the old Ant based build.
        eclipse {
            // need to specify Java source sets explicitly, SpringSource Gradle Eclipse plugin
            // ignores any nodes added in classpath.file.withXml
            sourceSets {
                main {
                    java.srcDirs "src", 'gen'
                }
            }

            jdt {
                sourceCompatibility = 1.6
                targetCompatibility = 1.6
            }

            classpath {
                plusConfigurations += [project.configurations.compile]
                containers 'com.android.ide.eclipse.adt.ANDROID_FRAMEWORK', 'com.android.ide.eclipse.adt.LIBRARIES'
            }

            project {
                name = appName + "-android"
                natures 'com.android.ide.eclipse.adt.AndroidNature'
                buildCommands.clear();
                buildCommand "com.android.ide.eclipse.adt.ResourceManagerBuilder"
                buildCommand "com.android.ide.eclipse.adt.PreCompilerBuilder"
                buildCommand "org.eclipse.jdt.core.javabuilder"
                buildCommand "com.android.ide.eclipse.adt.ApkBuilder"
            }
        }
        // sets up the Android Idea project, using the old Ant based build.
        idea {
            module {
                sourceDirs += file("src");
                scopes = [COMPILE: [plus: [project.configurations.compile]]]

                iml {
                    withXml {
                        def node = it.asNode()
                        def builder = NodeBuilder.newInstance();
                        builder.current = node;
                        builder.component(name: "FacetManager") {
                            facet(type: "android", name: "Android") {
                                configuration {
                                    option(name: "UPDATE_PROPERTY_FILES", value: "true")
                                }
                            }
                        }
                    }
                }
            }
        }
        dependencies {

            implementation 'com.google.firebase:firebase-core:11.2.0'
            implementation 'com.google.firebase:firebase-ads:11.2.0'

            implementation 'com.google.android.gms:play-services-ads:11.2.0'

        }
        repositories {
            maven {
                url "https://maven.google.com"
            }
        }
        apply plugin: 'com.google.gms.google-services'

就像您的問題說的那樣,將其添加到您的build.gradle(應用程序)中

implementation 'play-services-ads-lite:11.2.0'

希望這可以幫助!

在根build.gradle文件中添加Google的Maven存儲庫,適用於所有模塊

repositories {

     mavenLocal()
     mavenCentral()
     maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
     maven { url "https://oss.sonatype.org/content/repositories/releases/" }
     maven {  url "https://maven.google.com" }   //<-- Google's Maven repository
}

之后在Android模塊中注入Ads依賴項

dependencies {
    compile 'com.google.firebase:firebase-ads:11.2.0'
}

刷新您的項目。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM