2015-10-08 64 views
3

我試圖在.jniLibs文件夾中將.so文件包含在我的Android Studio項目中,但遇到錯誤,我該如何克服它?如何在Android Studio中使用棄用的NDK

Error:Execution failed for task ':app:compileDebugNdk'. 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?我在哪裏可以找到或有任何解決方法?

感謝

+0

請嘗試https://docs.gradle.org/current/userguide/build_environment.html ... – Zimano

回答

5

在Android的工作室,gradle.properties可以通過視圖下面的下拉列表進行訪問。 Drop Down Box in Android Studio

選擇項目視圖後,展開您的項目名稱並打開您的gradle.properties選項卡。 gradle.properties

在編輯器窗口中輸入

android.useDeprecatedNdk=true

現在,您將能夠使用當前NDK。

+1

如果文件不存在,您可以創建它。 – Oximer

+0

您需要創建gradle.properties .. – AnkitRox

相關問題