我根据the document做了所有事情,但无法在Android上运行该项目。请查看下图以查看错误。
以下是我根据文档编辑的the files。
注意:这只是一个空白的反应本机项目,安装react-native-notifications,没有任何代码行。
答案 0 :(得分:2)
React Native版本0.47对public function deleteAction(Request $request, Blog $blog) {
$em = $this->getDoctrine()->getManager();
$entry = $em->getRepository('BlogBundle:Blog')->find($blog);
界面进行了更改,该界面打破了像public function deleteAction(Request $request, $id) {
$em = $this->getDoctrine()->getManager();
$entry = $em->getRepository('BlogBundle:Blog')->find($id);
这样的库。强制使用0.46,直到有一个支持RN 0.47的库版本。
https://github.com/facebook/react-native/releases/tag/v0.47.0