I'm trying to use one LinkedIn app for multiple whitelabel versions of an App.
I've successfully got FB doing this - and it appears LinkedIn should be very similar, but cannot successfully get LinkedIn to return to correct app (when others are installed). Sometime it doesn't return, sometimes it goes to the other app sharing the same LI App ID...
I've added the bundleIDs com.bethegame.app1 and com.bethegame.app2 to the LinkedIn Mobile App, and added app1 and app2 as Suffixes for LinkedIn iOS mobile App.
Here's what's in my plist for each app...
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>com.bethegame.app1</string>
<key>CFBundleURLSchemes</key>
<array>
<string>app1</string>
</array>
</dict>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb123456789012345</string>
</array>
<key>FacebookUrlSchemeSuffix</key>
<string>app1</string>
</dict>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>com.bethegame.app1</string>
<key>CFBundleURLSchemes</key>
<array>
<string>li1234567-app1</string>
</array>
<key>LISuffix</key>
<string>app1</string>
</dict>
Like I say FB works although 'FacebookUrlSchemeSuffix' is documented, the LinkedIn 'LISuffix' is not?