Error:(12, 0) Error: NDK integration is deprecated in the current plugin.
Consider trying the new experimental plugin.
For details, see
Set "android.useDeprecatedNdk=true" in gradle.properties to continue using the current NDK integration.
解决如上问题只需如下两步:
1. 添加 gradle.properties 文件到工程的根目录下。
android.useDeprecatedNdk=true
添入工程根目录下的新建 gradle.properties 文件中
2. 添加 android.useDeprecatedNdk=true 到该 gradle.properties 文件中。
gradle.properties 文件内容仅此如下一句:
android.useDeprecatedNdk=true
然后,重新编译你的工程。
参见:
阅读(16668) | 评论(0) | 转发(0) |