Mozi
Mozi copied to clipboard
bug收集
大家在使用的过程中如果遇到问题可以在这里反馈
运行apk,没有图片出来,不能滑动。不能像展示的那样显示好多图片能滑动。 代码是pull master 最新的。是怎么回事呢 @duheng
运行apk,没有图片出来,不能滑动。不能像展示的那样显示好多图片能滑动。 代码是pull master 最新的。是怎么回事呢 @duheng
这个我只是做个demo,用于展示功能,接口是网上爬别人家的接口不是我自己的。数据少的时候就只有几条。 我图上展示的那个是我在之前公司的时候调用的公司成型的API接口,比较稳定,所以出来的效果也比较好
你好,我想问一下安卓用android studio打开直接报这个错 :ERROR: The minSdk version should not be declared in the android manifest file. You can move the version from the manifest to the defaultConfig in the build.gradle file.
你好,我想问一下安卓用android studio打开直接报这个错 :ERROR: The minSdk version should not be declared in the android manifest file. You can move the version from the manifest to the defaultConfig in the build.gradle file.
1.开启安卓模拟器; 2.在终端执行adb devices验证是否连上了模拟器 3.在终端执行yarn run android
下图是我刚刚跑出来的结果,是正常的。在android studio启动经常会提示你升级sdk,可以不用理会。rn项目不建议用android studio启动。
can not find iphone x, 但是我的iphone x模拟器开着呢?这是咋回事? 我的xnode版本是11.2(beta), 作者能否提供下您的xnode版本?
can not find iphone x, 但是我的iphone x模拟器开着呢?这是咋回事? 我的xnode版本是11.2(beta), 作者能否提供下您的xnode版本?
一:执行 open /node_modules/react-native/local-cli/runIOS/findMatchingSimulator.js 二:替换 if (!version.startsWith('iOS') && !version.startsWith('tvOS')) { 为 if ( !version.startsWith('com.apple.CoreSimulator.SimRuntime.iOS') && !version.startsWith('com.apple.CoreSimulator.SimRuntime.tvOS') ) {
三:全局搜索 simulator.isAvailable !== 'YES' 替换为 simulator.isAvailable !== true 四:重新执行yarn run ios
can not find iphone x, 但是我的iphone x模拟器开着呢?这是咋回事? 我的xnode版本是11.2(beta), 作者能否提供下您的xnode版本?
一:执行 open /node_modules/react-native/local-cli/runIOS/findMatchingSimulator.js 二:替换 if (!version.startsWith('iOS') && !version.startsWith('tvOS')) { 为 if ( !version.startsWith('com.apple.CoreSimulator.SimRuntime.iOS') && !version.startsWith('com.apple.CoreSimulator.SimRuntime.tvOS') ) {
三:全局搜索 simulator.isAvailable !== 'YES' 替换为 simulator.isAvailable !== true 四:重新执行yarn run ios
https://github.com/duheng/Mozi/issues/23
can not find iphone x, 但是我的iphone x模拟器开着呢?这是咋回事? 我的xnode版本是11.2(beta), 作者能否提供下您的xnode版本?
一:执行 open /node_modules/react-native/local-cli/runIOS/findMatchingSimulator.js 二:替换 if (!version.startsWith('iOS') && !version.startsWith('tvOS')) { 为 if ( !version.startsWith('com.apple.CoreSimulator.SimRuntime.iOS') && !version.startsWith('com.apple.CoreSimulator.SimRuntime.tvOS') ) { 三:全局搜索 simulator.isAvailable !== 'YES' 替换为 simulator.isAvailable !== true 四:重新执行yarn run ios
#23
已解决 谢谢!
报module找不到:
error info :
bundling failed: Error: Unable to resolve module ../../../../src/components
from /Users/liyunhua/Documents/work/react-native/ReactNamtiApp/src/auth/LogIn.js
: The module ../../../../src/components
could not be found from /Users/liyunhua/Documents/work/react-native/ReactNamtiApp/src/auth/LogIn.js
. Indeed, none of these files exist:
-
/Users/liyunhua/Documents/work/src/components(.native||.ios.js|.native.js|.js|.ios.json|.native.json|.json|.ios.ts|.native.ts|.ts|.ios.tsx|.native.tsx|.tsx)
code: login.js: import { Toast, Loading, Icon, } from 'components'; import { hexMD5, } from 'commons/utils'; import BaseSelector from 'selectors/base'; import * as BaseActions from 'actions/base'; import connect from 'store/connect';
1、上述问题已解决,是由于没有babel-plugin-root-import导致的。
babel-plugin-root-import
谢谢你的反馈,已更新