I am trying from last few days to integrate twitter kit in my project using fabric SDK. But i got an error " Whoops, something went wrong here! please contact support#fabric.io " i am using fabric(2.3.0), Xcode(7.2), OS X (10.11.2).
Here is my steps
Login to fabric.io
Create Organization from (link)
Download fabric SDK (download link)
Create New Xcode project
Run fabric SDK
login -> +New App -> Select Xcode project -> select Organization -> Select a kit to install(here i choose Twitter Kit to install and Hit install button for integrate with my project.)
See
Can anyone help me out from this problem
Thanks in advance
Solved it by quitting Xcode before starting the Fabric app
I also had the same issue.
Have resolved it using step-by-step Fabric tutorial
https://fabric.io/kits/ios/twitterkit/install (especially pay attention to Step 3: Account Provisioning and Terms of Service)
Uninstall Fabric, remove Fabric-latest.zip and re-download it again should work.
I observe some time due to slow internet connection fabric app not working as expected.
so the easiest solution is to visit fabric side and follow cocoa pod installation steps
here is the link..
https://fabric.io/kits/ios/crashlytics/install
https://fabric.io/kits/ios/twitterkit/install
This solved my problem.
To install using CocoaPods, just add pod 'TwitterKit' to your Podfile and run pod install (or pod update TwitterKit if you just want the latest version).
If you are just looking to download the Framework and install yourself you can find the download link here: https://dev.twitter.com/twitterkit/ios/installation#install-twitter-kit-manually
You can find installation instructions here: https://dev.twitter.com/twitterkit/ios/installation
Related
I am trying to integrate supabase-swift framework in my app, I followed all their steps but unfortunately Xcode doesn't detect it.
How I installed?
SPM - Search by URL(https://github.com/supabase/supabase-swift.git) and then added the package successfully
Debugging:
Clean Build folder
Restart Xcode
Try to clear the cache under: ~/Library/Caches/org.swift.swiftpm/ and reinstall
I have been trying to integrate the DJIWidget library into my Xcode project to display a live video feed from a drone, but I have been unable to get Xcode to find the DJIWidget module.
I tried downloading the DJI iOS-FPVDemo-Swift project and running pod install, but it has the exact same problem, where Xcode cannot find the DJIWidget module.
Is this an issue with the way Cocoapods is installing it?
I am using Xcode 10.1.
I remember DJIWidget has an issu with the last version of Cocoapods 1.6.0. Could you degragde your Cocoapods to 1.5.3 and try again. Hope this helps.
I've been making a chatbot using Dialogflow formerly Api.AI but now encountering error while integrating the project to my app written in Swift in Xcode. I'd installed cocoapods using terminal "sudo gem install cocoapods" and using this version of Dialogflow to create the podfile.
All gone well but now when I'm importing inside Xcode in my app's AppDelegate.swift file using import ApiAI or import AI Xcode is showing me error that No such module. Please refer to image.
And on GitHub this library which is written in Swift, showing that it has depreciated and asking me to refer to API.AI's Apple Client library which is in Obj-C and unfortunately I've no expertise in Obj-C.
After installing a pod using Cocoa Pods, you must from that point forward open the workspace rather that the project file. The icons will appear differently in your project like so:
In the image you provided is clearly showing that you have opened the project file not the workspace one.
Go to Pods Build settings and set Build Active Architecture Only to NO. This always helps while using pods. After that clean the project once and then build.
After installing pod you should clean project (shift + command + k) and then builds (command + b) in it a few times. Repeat it a few times if it is not still working.
Hope this help!
I followed the instructions provided here by google about manually installing google maps SDK, but I have an issue:
When I right-click GoogleMaps.framework, then click show in finder, I can't find resources folder or GoogleMaps.bundle!
my environment:
OS X El Capitan (virtual machine, using vmware)
Xcode 7.3.1
I am adding it to a swift project that uses story board
I did follow exactly what instructions said, and ticked "copy items if needed"
what I have done wrong?
thanks
You have to install cocoapods correctly before in order to integrate google map to your project.
Steps to install cocoapods:
Open terminal and type: sudo gem install cocoapods
In terminal go to your project and type: pod init this will create podfile inside your project
In last type: pod install
Note: do not forgot to edit your podfile before install using Link as mentioned and use .xcworkspace file (this will automatically created after install cocoapod) to launch Xcode for further development.
Terminal screen will look like this if you installed cocoapods successfully, see image.
for further in google map see here
I have followed the instructions listed here. However, I am unable to connect my app to Firebase. I am new to iOS programming and have installed CocoaPods to add the dependency. I am receiving the error "No Such Module Firebase."
I had this problem too. Try cleaning the app and then building it. If not, upload a picture of your podfile.
Also, after installing the pod, you need to close XCode and launch your project through terminal by going to the project directory and running
open <YOUR-PROJECT-NAME>.xcworkspace
in order to get access to the pods.
Hope this helps.