We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
android的 暴露的module名称与javascript引用不一致。 Toast.java里面写的 @OverRide public String getName() { return "RCTToast"; } 与index.js 里面的 var RCTToast= NativeModules.Toast; 对应不上。 应该改为 var RCTToast= NativeModules.RCTToast;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
android的 暴露的module名称与javascript引用不一致。 Toast.java里面写的
@OverRide
public String getName() {
return "RCTToast";
}
与index.js 里面的 var RCTToast= NativeModules.Toast; 对应不上。
应该改为 var RCTToast= NativeModules.RCTToast;
The text was updated successfully, but these errors were encountered: