您的位置:首页 > 移动开发 > Android开发

Error: Flag android.useDeprecatedNdk is no longer supported and will be removed in the next version

2018-01-05 15:59 1361 查看
今天学习用NDK进行开发,运行到手机上报了个错,先把错误日志贴上:

Error: Flag android.useDeprecatedNdk is no longer supported and will be removed in the next version of Android Studio.  Please switch to a supported build system.
Consider using CMake or ndk-build integration. For more information, go to: https://d.android.com/r/studio-ui/add-native-code.html#ndkCompile To get started, you can use the sample ndk-build script the Android
plugin generated for you at:
E:\SwimmingSpace\ndktest\build\intermediates\ndk\debug\Android.mk
Alternatively, you can use the experimental plugin: https://developer.android.com/r/tools/experimental-plugin.html To continue using the deprecated NDK compile for another 60 days, set
android.deprecatedNdkCompileLease=1515138691572 in gradle.properties


刚开始开这个错误日志有点懵了,但是我们仔细看一下会发现android.useDeprecatedNdk不在被支持了,但是在日志后面给了我们一个解决办法To continue using the deprecated NDK compile for another 60 days, set 
  android.deprecatedNdkCompileLease=1515138691572 in gradle.properties大概意思是想要继续使用已弃用的NDK编译60天,在gradle.properties文件里把android.useDeprecatedNdk去掉换成android.deprecatedNdkCompileLease=1515138691572就行了,我猜有肯能每个人错误日志里得到android.deprecatedNdkCompileLease=1515138691572不一定一样,所以尽量使用自己错日志里的进行运行。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐