配置项目“:game”时出现问题。 > java.lang.NullPointerException(无错误信息)

A problem occurred configuring project ':game'. > java.lang.NullPointerException (no error message)

我正在从 Cocos Creator V2.4.3 导出的 android 项目构建 apk,但出现以下错误 Gradle

A problem occurred configuring project ':game'.
> java.lang.NullPointerException (no error message)

我删除了所有 android SDK、NDK 并重新安装了 Android Studio,然后重新更新了 SDK、NDK、Build Tool。 但是还是报错。

一些配置:

Android SDK = 23, 26, 28, 30

SDK 构建工具 = 30.0.3

NDK = 19.2.5345600

Gradle版本:4.10.3

Gradle插件版本:3.2.0

JDK:jdk1.8.0_281


build.gradle 看起来像这样

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        flatDir {
                dirs 'libs'
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

有人知道应该如何解决这个问题吗?

问题在于在 Cocos Creator 中设置 NDK 路径。

我变了 C:\Users\SomeUserName\AppData\Local\Android\Sdk\ndk

进入 C:\Users\SomeUserName\AppData\Local\Android\Sdk\ndk.2.5345600

一切顺利

我有同样的问题,我通过将 3.6.3 指定为 Android Gradle 插件版本和 5.6 解决了这个问题。 4 作为 Gradle 版本。

您可以通过单击 文件--> 项目结构--> 项目 然后输入我上面提到的版本,然后单击应用。

等待下载新版本并重建您的项目。