Skip to content

tomtom-international/tomtom-sdk-spm-logging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TomTomSDKLoggingFrameworks

The TomTomSDKLoggingFrameworks package provides a LogConfiguration interface available in TomTomSDKCoreFrameworks.

Log configuration functionality for Maps SDK and Navigation SDK for iOS is only available upon request.Contact us to get started.

Requirements

  1. Xcode 14.2+
  2. Swift 5.7+
  3. Deployment target: iOS 13+

Installation

Getting access

  1. Because the artifacts for Logging SDK are private, you will need to Contact us to get access.
  2. Once you have obtained access, go to repositories.tomtom.com and log in with your account. Expand the user menu in the top-right corner, and select Edit profileGenerate an Identity Token. Copy the generated token and use it to specify your credentials in the ~/.netrc file. If the ~/.netrc file doesn’t exist, create one and add the following entries:
    • Replace the USERNAME_PLACEHOLDER with the login username or email you use for repositories.tomtom.com.
    • Replace the IDENTITY_TOKEN_PLACEHOLDER with the generated identity token.
    • Add a new line to the end of the ~/.netrc file to avoid parsing errors.
    machine repositories.tomtom.com
    login <USERNAME_PLACEHOLDER>
    password <IDENTITY_TOKEN_PLACEHOLDER>
    

Adding the TomTomSDKLoggingFrameworks package to your Xcode project

  1. Add a package dependency to your Xcode project:
    1. Ensure you finished the Getting access steps.
    2. Select FileAdd Package Dependencies....
    3. Enter the next URL in a search field: https://github.com/tomtom-international/tomtom-sdk-spm-logging
    4. Set Dependency Rule to Exact Version.

      We recommend using the Exact Version to have a consistent resolution.

    5. Ensure the Add to Project field contains your project.
    6. Click Add Package and wait for the Xcode to resolve the package.
    7. You should see the list of Package Products.
    8. Select a product you want to add to your project.
    9. And click Add Package.
  2. Add more products to your target:
    1. Select your project in the Xcode Project Navigator.
    2. Select the target to which you want to add dependencies.
    3. Select the General section and scroll down to the Frameworks, Libraries, and Embedded Content list.
    4. Click + button.
    5. Select the products you want to add and click the Add button.

Adding the TomTomSDKLoggingFrameworks package to your SPM package

  1. Ensure you finished the Getting access steps.
  2. Add next line to your package dependencies in the Package.swift file:
    .package(url: "https://github.com/tomtom-international/tomtom-sdk-spm-logging", exact: "0.46.1")

    We recommend using the exact version to have a consistent resolution.

  3. Add next required module to your target dependencies in the Package.swift file, e.g.:
    .product(name: "TomTomSDKLogConfiguration", package: "tomtom-sdk-spm-logging")
  4. The resulting package might look like this:
    let package = Package(
        name: "MyLibrary",
        platforms: [.iOS(.v13)],
        products: [
            .library(name: "MyLibrary", targets: ["MyLibrary"]),
        ],
        dependencies: [
            .package(url: "https://github.com/tomtom-international/tomtom-sdk-spm-logging", exact: "0.46.1")
        ],
        targets: [
           .target(name: "MyLibrary", dependencies: [
                .product(name: "TomTomSDKLogConfiguration", package: "tomtom-sdk-spm-logging")
                /* add more products here */
           ]),
        ]
    )

About

No description, website, or topics provided.

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages