Git Product home page Git Product logo

Comments (19)

baronha avatar baronha commented on June 15, 2024 3

@baronha I need your help! Am I the only one who has that issue?

@dkahdwk I cannot reproduce this on my simulator. Try upgrading to the latest version 0.4.8. If this problem persists. Please leave a message to let me know.

I found out something new! This problem occurs in MacBook m1. MacBook Intel does not cause problems in the same environment. I hope it helps and I hope this problem will be resolved soon.

@dkahdwk Wow. I can't reproduce this error at all on Macbook M1. Because I don't have 🥺. Probably with the help of the other members.

from react-native-multiple-image-picker.

denisamalgama avatar denisamalgama commented on June 15, 2024 3

Same issue here!

from react-native-multiple-image-picker.

dkahdwk avatar dkahdwk commented on June 15, 2024 1

아이폰에서 xcode로 릴리즈 빌드해서 봐도 안되나요?? @dkahdwk

저 당시에는 안됐었어요!
여러 이슈가 있어서 다른거로 교체하시는걸 추천드려요

from react-native-multiple-image-picker.

ErangaD avatar ErangaD commented on June 15, 2024 1

Same issue on ios simulator (iphone13) with mac M1.
But works on a real device.

from react-native-multiple-image-picker.

MiteshKalal7 avatar MiteshKalal7 commented on June 15, 2024 1

I got same error, it was working before suddenly now it is stuck at "Please wait..." on macbook pro M1 and iphone 13 simulator with ios 13.0... working fine on real iphone device.

from react-native-multiple-image-picker.

MiteshKalal7 avatar MiteshKalal7 commented on June 15, 2024 1

@ErangaD yeah now i think its time to update 14.0 to 14.3 :), will try and let you know

from react-native-multiple-image-picker.

dkahdwk avatar dkahdwk commented on June 15, 2024

@baronha I need your help! Am I the only one who has that issue?

from react-native-multiple-image-picker.

baronha avatar baronha commented on June 15, 2024

@baronha I need your help! Am I the only one who has that issue?

@dkahdwk I cannot reproduce this on my simulator. Try upgrading to the latest version 0.4.8. If this problem persists. Please leave a message to let me know.

from react-native-multiple-image-picker.

dkahdwk avatar dkahdwk commented on June 15, 2024

@baronha I need your help! Am I the only one who has that issue?

@dkahdwk I cannot reproduce this on my simulator. Try upgrading to the latest version 0.4.8. If this problem persists. Please leave a message to let me know.

I upgraded the version, but there is still an issue. (xcode 13.0, iPhone12 - IOS15.0)

from react-native-multiple-image-picker.

dkahdwk avatar dkahdwk commented on June 15, 2024

@baronha I need your help! Am I the only one who has that issue?

@dkahdwk I cannot reproduce this on my simulator. Try upgrading to the latest version 0.4.8. If this problem persists. Please leave a message to let me know.

I found out something new! This problem occurs in MacBook m1. MacBook Intel does not cause problems in the same environment. I hope it helps and I hope this problem will be resolved soon.

from react-native-multiple-image-picker.

kimrborja avatar kimrborja commented on June 15, 2024

same issue, any news here?

from react-native-multiple-image-picker.

nain93 avatar nain93 commented on June 15, 2024

Even if it's an m1, build in xcode and use a real device it works fine

from react-native-multiple-image-picker.

Mayur552-choudhary avatar Mayur552-choudhary commented on June 15, 2024

I'm also facing same issue, any solution for this ?

from react-native-multiple-image-picker.

dkahdwk avatar dkahdwk commented on June 15, 2024

I'm also facing same issue, any solution for this ?

There is no solution. Another library could be a way

from react-native-multiple-image-picker.

nain93 avatar nain93 commented on June 15, 2024

아이폰에서 xcode로 릴리즈 빌드해서 봐도 안되나요?? @dkahdwk

from react-native-multiple-image-picker.

kimrborja avatar kimrborja commented on June 15, 2024

Well, they say it works on actual device... will just trust that. I'll have to deploy on testflight to see. Thanks!

from react-native-multiple-image-picker.

Mayur552-choudhary avatar Mayur552-choudhary commented on June 15, 2024

I created fresh project then try It's working, after I install react-native-maps and update podfile then again loading issue.

require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '12.0'
install! 'cocoapods', :deterministic_uuids => false

target 'testApp' do
config = use_native_modules!

React Native Maps dependencies

rn_maps_path = '../node_modules/react-native-maps'
pod 'react-native-google-maps', :path => rn_maps_path

Flags change depending on the env values.

flags = get_default_flags()

use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change false to true and then install pods
:hermes_enabled => flags[:hermes_enabled],
:fabric_enabled => flags[:fabric_enabled],
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
)

pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'

target 'testAppTests' do
inherit! :complete
# Pods for testing
end

Enables Flipper.

Note that if you have use_frameworks! enabled, Flipper will not work and

you should disable the next line.

use_flipper!()

post_install do |installer|
react_native_post_install(installer)
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
__apply_Xcode_12_5_M1_post_install_workaround(installer)
end
end
end

from react-native-multiple-image-picker.

MiteshKalal7 avatar MiteshKalal7 commented on June 15, 2024

maybe the issue is getting because of this code

installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = "arm64"
end
end

but when i remove it i got another errors :(

from react-native-multiple-image-picker.

ErangaD avatar ErangaD commented on June 15, 2024

This issue went away after updating xcode to latest version (14.3) for me.

from react-native-multiple-image-picker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.