Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • a-z  
  • A-Z
  • 0-9
  • Comma “,”
  • Point “.”
  • Dash “-” and Underscore “_”

 

Info

Slash "/" is used as separator for hierarchy levels

...

  • sport_football
  • mainpage
  • 200_543

...



Information (optional)

The user can be informed at some point that the application monitors the user actions and transmits them to a measuring system. Furthermore, the user must be informed that he has the possibility to switch of the tracking in the application and can contradict this way. (see: Opt-Out)

...

A persistent saving of the opt-out decision in the library is not provided and needs to be implemented by the app developer.

Mobile Support

...

Should you encounter any issues or problems during the implementation, please send an email to our support team under support@spring.de with the following information:

...

Supported Platforms

Implementation iOS

...

The following example shows the basic installation for the iOS platform. When generating the class SpringMobile a site identifier (<site>) has to be indicated, which is shipped together with this documentation and the libraries.

...

Generally for spring measuring purpose, only some modifications need to be applied in your App, if a Panel App is used in your market. 
(This blog may assist your implementation):

...

In order to register your URL Scheme into your iOS App, you need to edit the Info.plist file under the "Supporting Files" in your project folder, two ways:

  1. you can edit it in any editor, if you do so, please insert the following code:

    Code Block
    	<key>CFBundleURLTypes</key>
    	<array>
    		<dict>
    			<key>CFBundleURLName</key>
    			<string>***</string>      //please change *** to your URL name, not so important
    			<key>CFBundleURLSchemes</key>
    			<array>
    				<string>***</string>  //very important, please replace 
    			</array>
    		</dict>
    	</array>
  2. Or you can edit this in xcode, add an item into Info.plist, named "URL types", expand "Item 0" under "URL types", and add two items: "URL identifier", "URL Schemes".

    For "URL identifier", assign your identifier, and for "URL Schemes", add a new item within it named "Item0", REGISTER A UNIQUE URL SCHEME FOR YOUR APP, VERY IMPORTANT!

    It should be like the following:

     

...