嗨,我使用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
设置吗?
答案 0 :(得分:15)
如果项目中没有JNI目录,请执行以下操作:
答案 1 :(得分:2)
@lalongoo为您提供了正确的答案,但您可以在没有Android Studio
的情况下执行此操作:
在jni
(默认位置)下创建名为app/src/main
的目录。