https://github.com/fossasia/open-event-ios, https://github.com/fossasia/open-event-orga-iOS
mariobehling on development
Fix continuous modal view prese… (compare)
@kushthedude set new build system to legacy build system in xcode10
@SIMRAN1 Thankyou for help but @jogendra solved it early :sweat_smile:
Is there any roadmap for open-event-ios ?
As it is mentioned on README Make the app functionality and UI/UX similar to the android app for Open Event.
Can anyone help me with this. I don't know what's wrong
Follow this: https://stackoverflow.com/questions/26024100/dyld-library-not-loaded-rpath-libswiftcore-dylib
@jogendra can you check out the PR fossasia/open-event-orga-iOS#31
Fix the Lint issue, I will review after that.
Hi everyone, I am a noob to open source. I am unable to build the project. I have tried many things it worked as well but it seems like the app is unable to fetch data from the API.
Error : Multiple commands produce '/Users/dhrubojyoti/Library/Developer/Xcode/DerivedData/FOSSAsia-gyfabjbimmkydsfwygwifsoosvup/Build/Products/Debug-iphonesimulator/SwiftValidators/SwiftValidators.framework/Info.plist':
1) Target 'SwiftValidators' (project 'Pods') has copy command from '/Users/dhrubojyoti/Desktop/IOS_DEV/open-event-attendee-ios/Pods/SwiftValidators/SwiftValidators/Info.plist' to '/Users/dhrubojyoti/Library/Developer/Xcode/DerivedData/FOSSAsia-gyfabjbimmkydsfwygwifsoosvup/Build/Products/Debug-iphonesimulator/SwiftValidators/SwiftValidators.framework/Info.plist'
2) Target 'SwiftValidators' (project 'Pods') has process command with output '/Users/dhrubojyoti/Library/Developer/Xcode/DerivedData/FOSSAsia-gyfabjbimmkydsfwygwifsoosvup/Build/Products/Debug-iphonesimulator/SwiftValidators/SwiftValidators.framework/Info.plist'
I have fixed this problem by adding this to the Podfile :
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "SwiftValidators"
target.remove_from_project
end
if target.name == "FOSSAsia"
target.remove_from_project
end
end
end
But it seems like the app is unable to fetch data from the API.
can anyone help me?