Difference between revisions of "Digital Measurement iOS Cocoapods Guide"

From Engineering Client Portal

(Created page with "{{Breadcrumb|}} {{Breadcrumb|Digital}} {{Breadcrumb|Digital Downloads}} {{Breadcrumb|Digital Measurement iOS Artifactory Guide}} {{CurrentBreadcrumb}} Category:Digital __...")
 
Line 8: Line 8:
 
== Initial Configuration ==
 
== Initial Configuration ==
 
The Nielsen SDK integration requires Cocoapods.   
 
The Nielsen SDK integration requires Cocoapods.   
 +
* The XCFramework which requires Cocoapods Version 1.10.1 or higher.
 
* The Dynamic Framework which requires Cocoapods Version 1.6.1 or higher.
 
* The Dynamic Framework which requires Cocoapods Version 1.6.1 or higher.
 
* The Static Framework requires Cocoapods version 1.4.0. or higher.
 
* The Static Framework requires Cocoapods version 1.4.0. or higher.
Line 50: Line 51:
 
</syntaxhighlight>
 
</syntaxhighlight>
 
== Add Cocoapod repository ==
 
== Add Cocoapod repository ==
 +
=== XCFramework (Cocoapods 1.10.1+) ===
 +
If using '''XCFramework''' (preferred approach), from the command line, type the following:
 +
<syntaxhighlight lang=Javascript>
 +
pod repo add NielsenAppSDK https://github.com/NielsenDigitalSDK/nielsenappsdk-ios-specs-dynamic.git
 +
</syntaxhighlight>
 +
Make sure you run the pod init command in your **project's directory.**
 +
<syntaxhighlight lang=Javascript>
 +
pod init
 +
</syntaxhighlight>
 +
<br>You now need to slightly modify the PodFile that was created in this directory.  From the command line, you can use vi or vim to edit. <br> The following must be in the PodFile:
 +
==== Podfile ====
 +
<syntaxhighlight lang=Javascript>
 +
platform :ios, '11.0'
 +
source 'https://github.com/NielsenDigitalSDK/nielsenappsdk-ios-specs-dynamic.git'
 +
 +
target 'YourProjectsNameHere' do
 +
use_frameworks!
 +
    #Pods for ApplicationTarget
 +
    pod 'NielsenAppSDK-XC'
 +
end
 +
</syntaxhighlight>
 +
 +
<blockquote>'''Note''': If you migrate from the iOS dynamic framework to the XCFramework, just add -XC suffix for the pod in the podfile. E.g. NielsenAppSDK should be replaced with NielsenAppSDK-XC. The same Github repo is used for both dynamic and XCFramework.</blockquote>
 +
 +
<blockquote>'''Note''': Nielsen AppSDK clients with applications on TVOS platform should take into account that TVOS slices are now part of the same XCFramework with iOS slices, so the XCFramework name is the same for both iOS and TVOS. But the TVOS framework imported in the application still has TVOS in its name. This is needed to reduce the number of changes in the existing apps. The code below should be added into the podfiles for TVOS XCFramework users.</blockquote>
 +
 +
<syntaxhighlight lang=Javascript>
 +
# modify XCFramework configuration files to update NielsenAppApi.framework -> NielsenTVAppApi.framework
 +
post_install do |installer|
 +
  installer.pods_project.targets.each do |target|
 +
    if target.name == 'Pods-NielsenVideoPlayerTVOSPodsXC'
 +
      # update Pods-NielsenVideoPlayerTVOSPodsXC.debug.xcconfig file
 +
      # update Pods-NielsenVideoPlayerTVOSPodsXC.release.xcconfig file
 +
      target.build_configurations.each do |config|
 +
          xcconfig_path = config.base_configuration_reference.real_path
 +
          puts "post_install: Found #{File.basename(xcconfig_path)}"
 +
          xcconfig = File.read(xcconfig_path)
 +
          new_xcconfig = xcconfig.sub('-framework "NielsenAppApi"', '-framework "NielsenTVAppApi"')
 +
          File.open(xcconfig_path, "w") { |file| file << new_xcconfig }
 +
          puts "post_install: Updated #{File.basename(xcconfig_path)} file with a value: NielsenTVAppApi.framework"
 +
      end
 +
      # update Pods-NielsenVideoPlayerTVOSPodsXC-frameworks.sh file
 +
      frameworksh_path = "Pods/Target Support Files/#{target.name}/#{target.name}-frameworks.sh"
 +
      if File.exist?(frameworksh_path)
 +
        puts "post_install: Found #{File.basename(frameworksh_path)}"
 +
        text = File.read(frameworksh_path)
 +
        new_contents = text.gsub('NielsenAppApi.framework', 'NielsenTVAppApi.framework')
 +
        File.open(frameworksh_path, "w") {|file| file.puts new_contents}
 +
        puts "post_install: Updated #{File.basename(frameworksh_path)} file with a value: NielsenTVAppApi.framework"
 +
      end
 +
    end
 +
  end
 +
end
 +
</syntaxhighlight>
 +
<blockquote>If you migrate from the TVOS dynamic framework to the XCFramework, please note that TVOS slices are now part of the same XCFramework with iOS slices. So in addition to appending of the -XC suffix to the pod name in the podfile please remove TVOS. E.g. the naming for the pod NielsenTVOSAppSDK should be changed to NielsenAppSDK-XC.</blockquote>
 +
 
=== Dynamic Framework (Cocoapods 1.6.1+) ===
 
=== Dynamic Framework (Cocoapods 1.6.1+) ===
If using '''Dynamic Framework''' (preferred approach), from the command line, type the following:
+
<blockquote>'''Note''': We highly recommend to migrate to XCFramework for all our clients.</blockquote>
 +
If using '''Dynamic Framework''', from the command line, type the following:
 
<syntaxhighlight lang=Javascript>
 
<syntaxhighlight lang=Javascript>
 
pod repo add NielsenAppSDK https://github.com/NielsenDigitalSDK/nielsenappsdk-ios-specs-dynamic.git
 
pod repo add NielsenAppSDK https://github.com/NielsenDigitalSDK/nielsenappsdk-ios-specs-dynamic.git
Line 69: Line 127:
 
     #Pods for ApplicationTarget
 
     #Pods for ApplicationTarget
 
     pod 'NielsenAppSDK'
 
     pod 'NielsenAppSDK'
 +
end
 +
</syntaxhighlight>
 +
<blockquote>'''Note''': If you are building an application on a Mac with Apple M1 chip, please add the following fix to end of the podfile</blockquote>
 +
 +
<syntaxhighlight lang=Javascript>
 +
post_install do |installer|
 +
  installer.pods_project.build_configurations.each do |config|
 +
    config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
 +
  end
 
end
 
end
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 90: Line 157:
 
     #Pods for ApplicationTarget
 
     #Pods for ApplicationTarget
 
     pod 'NielsenAppSDK'
 
     pod 'NielsenAppSDK'
 +
end
 +
</syntaxhighlight>
 +
<blockquote>'''Note''': If you are building an application on a Mac with Apple M1 chip, please add the following fix to end of the podfile</blockquote>
 +
 +
<syntaxhighlight lang=Javascript>
 +
post_install do |installer|
 +
  installer.pods_project.build_configurations.each do |config|
 +
    config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
 +
  end
 
end
 
end
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 96: Line 172:
 
<br>
 
<br>
 
<br>
 
<br>
To select a specific version of the Nielsen SDK, just append the build number.  For example, this line is requesting build 7.1.0.0:
+
To select a specific version of the Nielsen SDK, just append the build number.  For example, this line is requesting XCFramework build 8.1.0.0:
 
<syntaxhighlight lang=javascript>
 
<syntaxhighlight lang=javascript>
pod 'NielsenAppSDK','8.0.0.0'
+
pod 'NielsenAppSDK-XC','8.1.0.0'
 
</syntaxhighlight>
 
</syntaxhighlight>
 
<br>
 
<br>
Line 182: Line 258:
  
 
== Pod Versions ==
 
== Pod Versions ==
The following Pod versions are now available: (For 'kids' apps, please use the NoId framework (EG: NielsenNoIdAppSDK, NielsenNoIdTVOSAppSDK)  
+
The following Pod versions are now available: (For 'kids' apps, please use the NoId framework (EG: NielsenNoIdAppSDK-XC).
 +
 
 +
<blockquote>'''Note''': Nielsen SDK builds for tvOS are no longer distributed as separated packages. XCFramework allows to combine iOS and tvOS platforms in a single package. Please use the corresponding XCFramework while migrating from static or dynamic framework for tvOS. E.g. NielsenTVOSAppSDK -> NielsenAppSDK-XC.</blockquote>
 +
 
 +
{| class="wikitable" style="width: 30%;"
 +
|- style="background-color:#efefef;"
 +
! App Flavor Name
 +
|-
 +
| NielsenAppSDK-XC
 +
|-
 +
| NielsenNoAdAppSDK-XC
 +
|-
 +
| NielsenNoIdAppSDK-XC
 +
|}
 +
 
 +
We highly recommend to migrate to XCFramework for all our clients. For clients who still have reasons to keep using the old framework packages in the application and do not migrate to XCFramework we distribute "fat" frameworks both static and dynamic for the release 8.1.0.0. Anyway, our plan to stop distributing "fat" frameworks for future releases and to distribute the Nielsen iOS SDK as an XCFramework only.
 +
 
 +
The following Pod versions are available: (For 'kids' apps, please use the NoId framework (EG: NielsenNoIdAppSDK, NielsenNoIdTVOSAppSDK)  
  
 
{| class="wikitable" style="width: 30%;"
 
{| class="wikitable" style="width: 30%;"
Line 202: Line 295:
  
 
=== Regional Builds ===
 
=== Regional Builds ===
(For 'kids' apps, please use the NoId framework (EG: NielsenAGFNoIdAppSDK, NielsenAGFNoIdTVOSAppSDK)  
+
(For 'kids' apps, please use the NoId framework (EG: NielsenAGFNoIdAppSDK-XC, NielsenAGFNoIdTVOSAppSDK-XC)  
 +
{| class="wikitable" style="width: 30%;"
 +
|- style="background-color:#efefef;"
 +
! App Flavor Name
 +
|-
 +
| NielsenAGFAppSDK-XC
 +
|-
 +
| NielsenAGFNoAdAppSDK-XC
 +
|-
 +
| NielsenAGFNoIdAppSDK-XC
 +
|}
 +
 
 +
Fat frameworks are still available for the release 8.1.0.0.
 +
 
 
{| class="wikitable" style="width: 30%;"
 
{| class="wikitable" style="width: 30%;"
 
|- style="background-color:#efefef;"
 
|- style="background-color:#efefef;"

Revision as of 18:44, 2 June 2021

Engineering Portal breadcrumbArrow.png Digital breadcrumbArrow.png Digital Downloads breadcrumbArrow.png Digital Measurement iOS Artifactory Guide breadcrumbArrow.png Digital Measurement iOS Cocoapods Guide


How to install Nielsen SDK using CocoaPods

CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. It has over 30 thousand libraries and is used in over 1.9 million apps. The Nielsen SDK now uses this distribution framework for improved version management and provides a Static and Dynamic Framework.

Initial Configuration

The Nielsen SDK integration requires Cocoapods.

  • The XCFramework which requires Cocoapods Version 1.10.1 or higher.
  • The Dynamic Framework which requires Cocoapods Version 1.6.1 or higher.
  • The Static Framework requires Cocoapods version 1.4.0. or higher.

The full installation guide for this framework is provided on the Getting Started page, and how to set up the Podfile is mentioned in Using Cocoapods page.

Repository Credentials

The first step is to add the credentials received from Nielsen into your .netrc file. Navigate to your home folder and create a file called .netrc

cd ~/
vi .netrc

Within this file you need to add your credentials in the following format:

machine raw.githubusercontent.com
login <Nielsen App SDK client>
password <Auth token>


AlertIcon.png

Please do not upload any file to github or bitbucket containing the credentials above.

This will automatically lock your access.

Credentials

Obtain credentials → here ←

Verify version of Cocoapods

First verify that Cocoapods is installed.

pod --version

If it is not, then install.

Install via gem
sudo gem install cocoapods
Install using homebrew
brew install cocoapods

Add Cocoapod repository

XCFramework (Cocoapods 1.10.1+)

If using XCFramework (preferred approach), from the command line, type the following:

pod repo add NielsenAppSDK https://github.com/NielsenDigitalSDK/nielsenappsdk-ios-specs-dynamic.git

Make sure you run the pod init command in your **project's directory.**

pod init


You now need to slightly modify the PodFile that was created in this directory. From the command line, you can use vi or vim to edit.
The following must be in the PodFile:

Podfile

platform :ios, '11.0'
source 'https://github.com/NielsenDigitalSDK/nielsenappsdk-ios-specs-dynamic.git'

target 'YourProjectsNameHere' do
 use_frameworks!
    #Pods for ApplicationTarget
    pod 'NielsenAppSDK-XC'
end

Note: If you migrate from the iOS dynamic framework to the XCFramework, just add -XC suffix for the pod in the podfile. E.g. NielsenAppSDK should be replaced with NielsenAppSDK-XC. The same Github repo is used for both dynamic and XCFramework.

Note: Nielsen AppSDK clients with applications on TVOS platform should take into account that TVOS slices are now part of the same XCFramework with iOS slices, so the XCFramework name is the same for both iOS and TVOS. But the TVOS framework imported in the application still has TVOS in its name. This is needed to reduce the number of changes in the existing apps. The code below should be added into the podfiles for TVOS XCFramework users.

# modify XCFramework configuration files to update NielsenAppApi.framework -> NielsenTVAppApi.framework
post_install do |installer|
  installer.pods_project.targets.each do |target|
    if target.name == 'Pods-NielsenVideoPlayerTVOSPodsXC'
      # update Pods-NielsenVideoPlayerTVOSPodsXC.debug.xcconfig file
      # update Pods-NielsenVideoPlayerTVOSPodsXC.release.xcconfig file
      target.build_configurations.each do |config|
          xcconfig_path = config.base_configuration_reference.real_path
          puts "post_install: Found #{File.basename(xcconfig_path)}"
          xcconfig = File.read(xcconfig_path)
          new_xcconfig = xcconfig.sub('-framework "NielsenAppApi"', '-framework "NielsenTVAppApi"')
          File.open(xcconfig_path, "w") { |file| file << new_xcconfig }
          puts "post_install: Updated #{File.basename(xcconfig_path)} file with a value: NielsenTVAppApi.framework"
      end
      # update Pods-NielsenVideoPlayerTVOSPodsXC-frameworks.sh file
      frameworksh_path = "Pods/Target Support Files/#{target.name}/#{target.name}-frameworks.sh"
      if File.exist?(frameworksh_path)
        puts "post_install: Found #{File.basename(frameworksh_path)}"
        text = File.read(frameworksh_path)
        new_contents = text.gsub('NielsenAppApi.framework', 'NielsenTVAppApi.framework')
        File.open(frameworksh_path, "w") {|file| file.puts new_contents}
        puts "post_install: Updated #{File.basename(frameworksh_path)} file with a value: NielsenTVAppApi.framework"
      end
    end
  end
end

If you migrate from the TVOS dynamic framework to the XCFramework, please note that TVOS slices are now part of the same XCFramework with iOS slices. So in addition to appending of the -XC suffix to the pod name in the podfile please remove TVOS. E.g. the naming for the pod NielsenTVOSAppSDK should be changed to NielsenAppSDK-XC.

Dynamic Framework (Cocoapods 1.6.1+)

Note: We highly recommend to migrate to XCFramework for all our clients.

If using Dynamic Framework, from the command line, type the following:

pod repo add NielsenAppSDK https://github.com/NielsenDigitalSDK/nielsenappsdk-ios-specs-dynamic.git

Make sure you run the pod init command in your **project's directory.**

pod init


You now need to slightly modify the PodFile that was created in this directory. From the command line, you can use vi or vim to edit.
The following must be in the PodFile:

Podfile

platform :ios, '11.0'
source 'https://github.com/NielsenDigitalSDK/nielsenappsdk-ios-specs-dynamic.git'

target 'YourProjectsNameHere' do
 use_frameworks!
    #Pods for ApplicationTarget
    pod 'NielsenAppSDK'
end

Note: If you are building an application on a Mac with Apple M1 chip, please add the following fix to end of the podfile

post_install do |installer|
  installer.pods_project.build_configurations.each do |config|
    config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
  end
end

For Static Framework (Cocoapods 1.4+)

From the command line, type the following:

pod repo add NielsenAppSDK https://github.com/nielsendigitalsdk/nielsenappsdk-ios-specs.git

Make sure you run the pod init command in your **project's directory.**

pod init


You now need to slightly modify the PodFile that was created in this directory. From the command line, you can use vi or vim to edit.
The following must be in the PodFile:

Podfile

platform :ios, '11.0'
source 'https://github.com/NielsenDigitalSDK/nielsenappsdk-ios-specs.git'

target 'YourProjectsNameHere' do
    #Pods for ApplicationTarget
    pod 'NielsenAppSDK'
end

Note: If you are building an application on a Mac with Apple M1 chip, please add the following fix to end of the podfile

post_install do |installer|
  installer.pods_project.build_configurations.each do |config|
    config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
  end
end

NOTE: You can have multiple pods within the Podfile

To select a specific version of the Nielsen SDK, just append the build number. For example, this line is requesting XCFramework build 8.1.0.0:

pod 'NielsenAppSDK-XC','8.1.0.0'


If using version control, a warning message will be displayed within the console trace during the build of your app, and it will show all sdk versions released to-date, allowing a developer to select a more recent build if desired.

Execute Install

Once that has been edited, you can now execute the install:

pod install


Cocoapods will automatically create a new file with extension “.xcworkspace”. From this moment, that file should be used for using the target project instead of previous one with extension “.xcodeproj”. Inside of this workspace you will see “Pods” target which will include ready to use NielsenAppApi framework.

Open the file with the extension of .xcworkspace file using Xcode.

Pod Versions

The following Pod versions are now available: (For 'kids' apps, please use the NoId framework (EG: NielsenNoIdAppSDK-XC).

Note: Nielsen SDK builds for tvOS are no longer distributed as separated packages. XCFramework allows to combine iOS and tvOS platforms in a single package. Please use the corresponding XCFramework while migrating from static or dynamic framework for tvOS. E.g. NielsenTVOSAppSDK -> NielsenAppSDK-XC.

App Flavor Name
NielsenAppSDK-XC
NielsenNoAdAppSDK-XC
NielsenNoIdAppSDK-XC

We highly recommend to migrate to XCFramework for all our clients. For clients who still have reasons to keep using the old framework packages in the application and do not migrate to XCFramework we distribute "fat" frameworks both static and dynamic for the release 8.1.0.0. Anyway, our plan to stop distributing "fat" frameworks for future releases and to distribute the Nielsen iOS SDK as an XCFramework only.

The following Pod versions are available: (For 'kids' apps, please use the NoId framework (EG: NielsenNoIdAppSDK, NielsenNoIdTVOSAppSDK)

App Flavor Name
NielsenAppSDK
NielsenNoAdAppSDK
NielsenNoAdTVOSAppSDK
NielsenNoIdAppSDK
NielsenNoIdTVOSAppSDK
NielsenTVOSAppSDK

Regional Builds

(For 'kids' apps, please use the NoId framework (EG: NielsenAGFNoIdAppSDK-XC, NielsenAGFNoIdTVOSAppSDK-XC)

App Flavor Name
NielsenAGFAppSDK-XC
NielsenAGFNoAdAppSDK-XC
NielsenAGFNoIdAppSDK-XC

Fat frameworks are still available for the release 8.1.0.0.

App Flavor Name
NielsenAGFAppSDK
NielsenAGFNoAdAppSDK
NielsenAGFNoAdTVOSAppSDK
NielsenAGFNoIdAppSDK
NielsenAGFNoIdTVOSAppSDK
NielsenAGFTVOSAppSDK

Appsdk Suffix Reference

The Nielsen AppSDK has various configurations per market and distribution type, which can be determined by reviewing the sdk suffix. The first part will be the SDK version: 3 digits for the major SDK version and 1 digit for the minor SDK version. EG: ai.8.1.0.0_abc

Additional Resources

For more information on CocoaPods or How to set up the Profile in the Using Cocoapods page.