我想将一个项目从Eclipse迁移到Android Studio。
导入项目后,修复Gradle中的错误,我必须遵循这篇文章(在此错误消息之后: [..]请使用实验性插件) http://tools.android.com/tech-docs/new-build-system/gradle-experimental
我坚持一点:
在Jni文件夹中," std :: runtime_error"找不到示例:
尽管有其他std方法,
我的Application.mk:
var userId = 'sKdkC6sGYb';///in my code I would be getting current user
var ref = new Firebase("https://gibber.firebaseio.com/Recent");
ref.orderByChild("userId").equalTo(userId).on("child_added",
function(snapshot) {
console.log('child_added: '+snapshot.key());
console.log('value: '+snapshot.val().lastMessage);
});
我的Android.mk:
APP_PLATFORM := android-22
APP_STL := gnustl_shared
APP_CPPFLAGS += -std=c++11
有人有这个问题吗?