如何在Android Studio上创建jniLibs文件夹?

时间:2016-07-28 01:25:51

标签: android

enter image description here

嗨,我使用Android Studio。

我想创建int closingBracketIndex = outputMessage.IndexOf(']'); string msgType = closingBracketIndex > 2 ? outputMessage.Substring(1, closingBracketIndex - 1) : string.Empty; // Workout message colour Color messageColor = typeColors.ContainsKey(msgType) ? typeColors[msgType] : typeColors["Default"]; // Format message outputMessage = FormatOutput(outputMessage); // Append message with colour RTBAppendText(targetRTB, messageColor, outputMessage); ... 文件夹,但我的项目没有。

我知道jniLibs是自动创建的,不是吗?

jniLibs设置吗?

2 个答案:

答案 0 :(得分:15)

如果项目中没有JNI目录,请执行以下操作:

enter image description here

答案 1 :(得分:2)

@lalongoo为您提供了正确的答案,但您可以在没有Android Studio的情况下执行此操作:

jni(默认位置)下创建名为app/src/main的目录。