Skip to content

Commit

Permalink
update android sdk 6.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
amit-kremer93 committed Sep 22, 2022
1 parent 1cd2cd4 commit a4b159d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/releaseNotesGenerator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ JIRA_TOKEN=$1
JIRA_FIXED_VERSION=$2

fixed_version_found=false
curl -X GET -H "Authorization: Basic $JIRA_TOKEN=" https://appsflyer.atlassian.net/rest/api/3/project/11400/versions | jq -r '.[] | .name+""+.id' | while read version ; do
curl -X GET -H "Authorization: Basic $JIRA_TOKEN=" https://appsflyer.atlassian.net/rest/api/3/project/11723/versions | jq -r '.[] | .name+""+.id' | while read version ; do
if [[ "$version" == *"$JIRA_FIXED_VERSION"* ]] ;then
echo "$JIRA_FIXED_VERSION Found!"
fixed_version_found=true
Expand Down
2 changes: 1 addition & 1 deletion Docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ appsFlyer.initSdk(

##### <a id="startSdk"> **`startSdk()`**

In version 6.9.0 of the react-native-appslfyer SDK we added the option of splitting between the initialization stage and start stage. All you need to do is add the property manualStart: true to the init object, and later call appsFlyer.startSdk() whenever you decide. If this property is set to false or doesn’t exist, the sdk will start after calling `appsFlyer.initSdk(...)`.
In version 6.9.1 of the react-native-appslfyer SDK we added the option of splitting between the initialization stage and start stage. All you need to do is add the property manualStart: true to the init object, and later call appsFlyer.startSdk() whenever you decide. If this property is set to false or doesn’t exist, the sdk will start after calling `appsFlyer.initSdk(...)`.

*Example:*
```javascript
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

### <a id="plugin-build-for"> This plugin is built for

- Android AppsFlyer SDK **v6.8.2**
- Android AppsFlyer SDK **v6.9.1**
- iOS AppsFlyer SDK **v6.8.1**

## <a id="breaking-changes"> ❗❗ Breaking changes when updating to v6.x.x❗❗
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ repositories {
dependencies {
implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
implementation "com.android.installreferrer:installreferrer:${safeExtGet('installReferrerVersion', '2.1')}"
implementation "com.appsflyer:af-android-sdk:${safeExtGet('appsflyerVersion', '6.8.2')}"
implementation "com.appsflyer:af-android-sdk:${safeExtGet('appsflyerVersion', '6.9.1')}"
}

0 comments on commit a4b159d

Please sign in to comment.