本文主要是介绍Android NDK: WARNING: APP_PLATFORM android-14 is larger than android:minSdkVersion 7,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
所有关于这个问题的解决中,依然是android论坛是比较完美的 http://code.google.com/p/android/issues/detail?id=39752
文中提及几种方案
1. 修改 add-application.mk, 注释掉报错的脚本,很黄很暴力
2. 修改 add-application.mk,强制设置
APP_PLATFORM := android-8 或其他低于 android:minSdkVersion 的值(链接)
,或者使用
APP_PLATFORM := android-<minSdkVersion> (#6楼),还是很黄很暴力
3. #7楼提供了一个不错的临时解决方案,但同时在 #23楼同样这个人还是认为这个警告严格意义上是一个错误,因为关闭这个error,将造成向下兼容的问题。
- Window -> Preferences -> C/C++ -> Build -> Settings - Select CDT GNU C/C++ Error Parser - In the Error Parser options at the bottom, add a new entry with the following contents:Severity: Warning Pattern: (.*?):(\d+): Android NDK: WARNING:(.*) File: $1 Line: $2 Description: $3
这篇关于Android NDK: WARNING: APP_PLATFORM android-14 is larger than android:minSdkVersion 7的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!