Closed iamshaunwu closed 2 years ago
Reference to #966 I also raised the issue at https://github.com/zhangao0086/DKImagePickerController/issues/695.
Not sure if repo maintenance is still active there but in the meantime, I will fall back to 13.2.1 when compiling.
Also having this issue.
Same issue after update to new Xcode version
+1
https://developer.apple.com/download/all/?q=xcode In case any of you needed, here's where you can download older version of XCode. Reverting to older version of XCode 13.2.1 works fine for me too.
+1
+1
+1
Blocked by #695. You can upvote there since this is a dependency of file_picker.
+1
+1
+1
+1
+1
Please, upvote on the #695 since this plugin directly depends on it for some iOS features.
+1
+1
+1
+1
+1 any update for this?
I think till now don't have any update so i decide to keep Xcode 13.3 and Xcode 13.0 both. Build archive from Xcode 13.0 problem will solve.
Any update for this?
+1
+1
This will be fixed as soon as #695 is fixed. Sorry for any inconvenience.
I'll try to fix this my own since the maintainer of the dependency (DKImagePickerController) is taking a while. I'll keep you updated. Might have to point the podspec to a fix fork until is merged into the official repo.
EDIT: It's now published on the pods repo. Just run a pod repo update
inside your project's /ios
folder and you should be good.
It's fixed and I already provided with #696 to the official repo.
As of now, you can use the workaround to point directly to the repo with the fix on your Podfile
:
pod 'DKImagePickerController/PhotoGallery', :git => 'https://github.com/miguelpruivo/DKImagePickerController.git'
After that, don't forget to
cd ios && rm Podfile.lock && rm -rf Pods && pod install
Thanks boss!
https://github.com/zhangao0086/DKImagePickerController/pull/696 has been closed and merged into develop
When a new update of file_picker will be available on pub.dev with these changes
+1 ,thank you
+1 this one tortured me for some time
+1 One of my app feature is on hold due to this issue. Please let us know when the update is coming?
for those blocked by this issue.... you could install xcode 13.2.1 in parallel to 13.3 and archive without issue. That's what I've been doing. You can find the official download page here https://developer.apple.com/download/all/?q=Xcode
I hope it helps
App update delay due to this issue.
@rvndsngwn you can use the temporary workaround.
The owner of the DKImagePickerController will have to publish the updated Pod, merging only isn't enough. When it's done, you shouldn't require anything else other than a pod repo update
.
@rvndsngwn you can use the temporary workaround.
The owner of the DKImagePickerController will have to publish the updated Pod, merging only isn't enough. When it's done, you shouldn't require anything else other than a
pod repo update
.
not working
+1
PS. You need to add this to your iOs project's podfile inside the target 'Runner' do :
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '8.11.0'
pod 'DKImagePickerController/PhotoGallery', :git => 'https://github.com/miguelpruivo/DKImagePickerController.git'
end
I'm seeing the following issue in my terminal, any leads?
[!] The following Swift pods cannot yet be integrated as static libraries:
The Swift pod `DKPhotoGallery-library` depends upon `SDWebImage-library`, which does not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set `use_modular_headers!` globally in your Podfile, or specify `:modular_headers => true` for particular dependencies.
Got the fix finally, make sure you add the line pod 'DKImagePickerController/PhotoGallery', :git => 'https://github.com/miguelpruivo/DKImagePickerController.git'
after the use_modular_headers!
line so that the settings apply for this pod as well
I'm seeing the following issue in my terminal, any leads?
[!] The following Swift pods cannot yet be integrated as static libraries: The Swift pod `DKPhotoGallery-library` depends upon `SDWebImage-library`, which does not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set `use_modular_headers!` globally in your Podfile, or specify `:modular_headers => true` for particular dependencies.
PS. You need to add this to your iOs project's podfile inside the target 'Runner' do :
target 'Runner' do use_frameworks! use_modular_headers! flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '8.11.0' pod 'DKImagePickerController/PhotoGallery', :git => 'https://github.com/miguelpruivo/DKImagePickerController.git' end
this method is working fine now i can successfully create the archive for ios and publish my app
this solve proplem with xcode 13.3
pod 'DKImagePickerController/PhotoGallery', :git => 'https://github.com/miguelpruivo/DKImagePickerController.git'
set it on your pod file and do pod update | pod install then make ipa it will work inshallah
It seems the pod package DKImagePickerController
has been updated to 4.3.3
(was 4.3.2
), running pod update
inside "ios" folder will update this package to the latest version.
After doing this I was able to archive my app on XCode 13.3 successfully. No extra change needed on your pod
file.
So this is now fixed. I'm closing this. 🎉
EDIT: It's now published on the pods repo. Just run a
pod repo update
inside your project's/ios
folder and you should be good.It's fixed and I already provided with #696 to the official repo.
As of now, you can use the workaround to point directly to the repo with the fix on your
Podfile
:pod 'DKImagePickerController/PhotoGallery', :git => 'https://github.com/miguelpruivo/DKImagePickerController.git'
After that, don't forget to
cd ios && rm Podfile.lock && rm -rf Pods && pod install
THKS
Hi, after upgrading to Xcode 13.3 and iOS 15.4,
flutter build ipa --obfuscate --split-debug-info=debug-info
pod deintegrate && rm Podfile.lock && pod install
>flutter clean
>rm -rf ~/Library/Developer/Xcode/DerivedData
then rebuild, same issue encountered.Appreciate if some light can be shed on this issue. Thanks!