Mozi icon indicating copy to clipboard operation
Mozi copied to clipboard

bug收集

Open duheng opened this issue 5 years ago • 11 comments

大家在使用的过程中如果遇到问题可以在这里反馈

duheng avatar Nov 27 '18 03:11 duheng

运行apk,没有图片出来,不能滑动。不能像展示的那样显示好多图片能滑动。 代码是pull master 最新的。是怎么回事呢 @duheng

ief820 avatar Nov 29 '18 06:11 ief820

运行apk,没有图片出来,不能滑动。不能像展示的那样显示好多图片能滑动。 代码是pull master 最新的。是怎么回事呢 @duheng

这个我只是做个demo,用于展示功能,接口是网上爬别人家的接口不是我自己的。数据少的时候就只有几条。 我图上展示的那个是我在之前公司的时候调用的公司成型的API接口,比较稳定,所以出来的效果也比较好

duheng avatar Nov 29 '18 08:11 duheng

你好,我想问一下安卓用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.

image

tumoxuese avatar Jul 31 '19 12:07 tumoxuese

你好,我想问一下安卓用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.

image

1.开启安卓模拟器; 2.在终端执行adb devices验证是否连上了模拟器 3.在终端执行yarn run android

下图是我刚刚跑出来的结果,是正常的。在android studio启动经常会提示你升级sdk,可以不用理会。rn项目不建议用android studio启动。 image

duheng avatar Aug 02 '19 02:08 duheng

can not find iphone x, 但是我的iphone x模拟器开着呢?这是咋回事? 我的xnode版本是11.2(beta), 作者能否提供下您的xnode版本?

wenxiayili avatar Oct 18 '19 11:10 wenxiayili

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

duheng avatar Oct 18 '19 13:10 duheng

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

duheng avatar Oct 18 '19 13:10 duheng

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

已解决 谢谢!

wenxiayili avatar Oct 18 '19 14:10 wenxiayili

报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';

wenxiayili avatar Oct 18 '19 22:10 wenxiayili

1、上述问题已解决,是由于没有babel-plugin-root-import导致的。

wenxiayili avatar Oct 19 '19 13:10 wenxiayili

babel-plugin-root-import

谢谢你的反馈,已更新

duheng avatar Nov 09 '19 12:11 duheng