-
Notifications
You must be signed in to change notification settings - Fork 0
Home
If you want to start to developed further the Personal Inquiry Manager you have to clone the project using the following command:
git clone [email protected]:weSPOT/wespot_pim_ios.git
After you have cloned it, enter the folder and then pull from the repository the latest changes with:
git pull origin
After you have pulled the code from the repository you can open the code with xcode.
The standard bundle id is "net.wespot.PersonalInquiryManager". If you want to publish this app to the app store, you should define another bundle id under "General" > "Identity" in the project settings.
#Step 4: define PrivateData.h
Define a file PrivateData.h with the keys filed in correctly. This file contains keys to connect e.g to the Badges API (badges_authorization_key) or the IWE (apiKey)
#ifndef PersonalInquiryManager_INQOpenBadgesKey_h
#define PersonalInquiryManager_INQOpenBadgesKey_h
#define badges_authorization_key @" your badges authorization key "
#define apiKey @"yourApiKey"
#define MISSING_ID 12234
#endif