diff --git a/.github/workflows/scripts/releaseNotesGenerator.sh b/.github/workflows/scripts/releaseNotesGenerator.sh
index 51419370..2c0f5897 100755
--- a/.github/workflows/scripts/releaseNotesGenerator.sh
+++ b/.github/workflows/scripts/releaseNotesGenerator.sh
@@ -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
diff --git a/Docs/API.md b/Docs/API.md
index 97ccd491..64724432 100644
--- a/Docs/API.md
+++ b/Docs/API.md
@@ -97,7 +97,7 @@ appsFlyer.initSdk(
##### **`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
diff --git a/README.md b/README.md
index 909073ac..e2d90ed1 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@
### This plugin is built for
-- Android AppsFlyer SDK **v6.8.2**
+- Android AppsFlyer SDK **v6.9.1**
- iOS AppsFlyer SDK **v6.8.1**
## ❗❗ Breaking changes when updating to v6.x.x❗❗
diff --git a/android/build.gradle b/android/build.gradle
index 519d65c1..fe4a34e7 100755
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -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')}"
}