Mobile SDK Install - Detailed help for Cocoapods install

Hi, Thanks for step by step example. I have a question regarding adding cocoapod-keys. I tried to run this example with cococapod-keys, https://github.com/spark/spark-setup-ios-example. But after installing the pod plugin and run the pod install/update it still asked for cocoapods-keys plugin install. My pod file looks like this:

source ‘https://github.com/CocoaPods/Specs.git

platform :ios, ‘8.0’

target ‘SparkSetupExample-Swift’ do

xcodeproj 'SparkSetupExample-Swift'
pod "SparkSetup", :path => "../spark-setup-ios"
pod "Spark-SDK", :path => "../spark-sdk-ios"
plugin 'cocoapods-keys', {
    :project => "SparkSetupExample-Swift",
    :keys => [
    "OAuthClientId",
    "OAuthSecret"
    ]}

end

I appreciate your help. I am getting stuck. Thanks.

Try removing the two :path => "../spark-setup-ios" directives from the Podfile and run pod install again

Hi, thanks. But I am still getting the same cocoapods-keys plugin error. My Pod file looks this now:

source ‘https://github.com/CocoaPods/Specs.git

platform :ios, ‘8.0’

target ‘SparkSetupExample-Swift’ do

xcodeproj 'SparkSetupExample-Swift'

pod "Spark-SDK", :path => "../spark-sdk-ios"
plugin 'cocoapods-keys', {
    :project => "SparkSetupExample-Swift",
    :keys => [
    "OAuthClientId",
    "OAuthSecret"
    ]}

end

I think you are getting the error because of the out of date Ruby you have installed on your system, see my reply in the other thread

I got ruby 2.6.1, cocoapods 0.39.0 and cocoapods-keys 1.6. Please see my gem list.

Ruby 2.6.x doesn’t make much sense to me. Latest stable version is 2.3.0. See here:

https://www.ruby-lang.org/en/downloads/

Hi, I am running ruby 2.3.0. It was my mistake. still no avail. Please see my screen shot for plugin error and my gem list.

super weird, shouldn’t happen.
I’d try a complete uninstall-reinstall of ruby+cocoapods

Hi Ido;

I have tried reinstalling everything on different Mac and now I am able to pass the Cocoapods-keys, etc for iOS TInker. I have put cocoapods-keys as follow:
“MixpanelToken”, particle
“OAuthClientId”, particle
“OAuthSecret” particle

Now when I run Particle app on Xcode I am getting the following error on SparkDiscoverDeviceViewController.m file:

property ‘isAuthenticated’ not found on object of type "SparkCloud"

Please see my screen shot also. Do I need to set cocoapods-keys to my real account to run this app?

This is a recent change - I added isAuthenticated property just the other day and haven’t yet published a new pod version… It replaces isLoggedIn - Be sure you use latest pod 0.4.0 release and not tip of master.

Unrelated - yea Cocoapod-keys is run every install and inject secret keys to the app.
Mixpanel is used for our analytics tool - you can ignore that unless you want to use it too and then you can find the required token under your account at Mixpanel. Oauth seret/client is for setting unique key for SDK usage per app. You can use particle/particle for now

Hi, thanks for the pointer. where do I get Cocoapods 0.4.0. I can only find up to 0.39.0 on github and gem. Thanks.

re “First, download the SDK from the link on the Mobile SDK page”

Should we download “master” or release “0.5.1”?

I downloaded both, and they’re different.
I assume master has latest and greatest changes, but is not officially released. (?)
spark-sdk-ios-master
spark-sdk-ios-0.5.1