1

我使用 Cordova 制作了 Android 平台,并在 build.gradle 上添加了以下代码以使用 GCM。

∙apply plugin: ‘com.google.gms.google-services’

∙buildscript {
repositories {
    mavenCentral()
    jcenter()
}
∙ classpath 'com.google.gms:google-services:1.5.0-beta2’
∙ compile 'com.google.android.gms:play-services-gcm:8.3.0'
  compile 'com.android.support:support-v4:+'

它似乎工作得很好,但是当我在添加人行横道插件后执行 gradle sync 时,出现了一些错误,如下所示。

∙Error:(194, 0) Error: NDK integration is deprecated in the current plugin.  Consider trying the new experimental plugin.  For details, see http://tools.android.com/tech-docs/new-build-system/gradle-experimental.  Set "android.useDeprecatedNdk=true" in gradle.properties to continue using the current NDK integration.

项目列表中没有文件“gradle.properties”。因此,当我创建一个名为“gradle.properties”的文件时,添加另一个代码,如下所示。

∙android.useDeprecatedNdk=true

但是,我仍然有与我之前提到的不同的错误。

∙Error:exception during working with external system:

有没有人遇到过和我一样的问题?请分享你的知识。我非常需要你的帮助。谢谢你。

4

1 回答 1

0

你的 gradle.properties 文件在你的项目根路径下吗?

于 2015-11-23T00:04:47.513 回答