Skip to content

Commit

Permalink
Minor wording changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sporiff committed Oct 2, 2024
1 parent 9aefdf5 commit 454e674
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/content/docs/sdk/cocos2dx/v5/index.mdoc
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,10 @@ To add support for the [Meta Install Referrer](https://developers.facebook.com/d

```cpp
#include "Adjust/Adjust2dx.h"

std::string appToken = "{% $variables.config.token %}";
std::string environment = AdjustEnvironmentSandbox2dx;

AdjustConfig2dx adjustConfig = AdjustConfig2dx(appToken, environment);
adjustConfig.setFbAppId("{% $variables.config.fbAppId %}");
Adjust2dx::initSdk(adjustConfig);
Expand Down Expand Up @@ -215,7 +215,7 @@ To complete iOS setup, you MUST copy all Objective-C++ (`.h` and `.mm`) files fr

To inform the App Store of the Adjust SDK's privacy requirements, you need to merge your privacy manifest with Adjust's privacy manifests.

1. Add the [Adjust SDK privacy manifest on GitHub](https://github.com/adjust/ios_sdk/blob/master/Adjust/PrivacyInfo.xcprivacy) properties to your app's privacy manifest.
1. Add the [Adjust SDK privacy manifest](https://github.com/adjust/ios_sdk/blob/master/Adjust/PrivacyInfo.xcprivacy) properties to your app's privacy manifest.
1. Add the [Signature library privacy manifest](https://github.com/adjust/adjust_signature_sdk/blob/main/Resources/iOS/PrivacyInfo.xcprivacy) properties to your app's privacy manifest.

## 6. Integrate the Adjust SDK {% #integrate-the-adjust-sdk %}
Expand Down
7 changes: 3 additions & 4 deletions src/content/docs/sdk/migration/cocos2dx/v4-to-v5.mdoc
Original file line number Diff line number Diff line change
Expand Up @@ -100,19 +100,18 @@ SDK v5 uses the [SDK signature library](https://help.adjust.com/en/article/sdk-s

1. Download the latest `adjust-android-signature.aar` from [the Adjust Signature library GitHub repository](https://github.com/adjust/adjust_signature_sdk/releases/latest).
1. Add the `.aar` to your Android Studio project.
1. [Provide your app's SHA-1 fingerprints](https://help.adjust.com/en/article/sdk-signature#manage-your-certificate-fingerprints) prior to testing.

### iOS apps

1. Download the latest `AdjustSigSdk-iOS-Static.a` from [the Adjust Signature library GitHub repository](https://github.com/adjust/adjust_signature_sdk/releases/latest).
1. Link the `.a` in your Xcode project.
1. Add the [Signature library privacy manifest](https://github.com/adjust/adjust_signature_sdk/blob/main/Resources/iOS/PrivacyInfo.xcprivacy) properties to your app's privacy manifest.

## Update your app's privacy manifest (iOS only) {% #update-privacy-manifest %}

To inform the App Store of the Adjust SDK's privacy requirements, you need to add Adjust's privacy manifest properties to your app's privacy manifest.
To inform the App Store of the Adjust SDK's privacy requirements, you need to merge your privacy manifest with Adjust's privacy manifests.

Adjust's privacy manifest is available [on GitHub](https://github.com/adjust/ios_sdk/blob/master/Adjust/PrivacyInfo.xcprivacy).
1. Add the [Adjust SDK privacy manifest](https://github.com/adjust/ios_sdk/blob/master/Adjust/PrivacyInfo.xcprivacy) properties to your app's privacy manifest.
1. Add the [Signature library privacy manifest](https://github.com/adjust/adjust_signature_sdk/blob/main/Resources/iOS/PrivacyInfo.xcprivacy) properties to your app's privacy manifest.

## Update the initialization method {% #update-the-init-method %}

Expand Down

0 comments on commit 454e674

Please sign in to comment.