Skip to content

Commit 70016e7

Browse files
Merge pull request #493 from AppsFlyerSDK/releases/6.x.x/6.12.x/6.12.2-rc1
Releases/6.x.x/6.12.x/6.12.2 rc1
2 parents 0ef77a0 + 13c6e8b commit 70016e7

File tree

8 files changed

+15
-9
lines changed

8 files changed

+15
-9
lines changed

.github/workflows/scripts/versionsAlignmentValidator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
# Plugin version from release branch
44
PLUGIN_VERSION=$1

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 6.12.2
2+
Release date: *2023-08-29*
3+
4+
- Update Android native SDK 6.12.2
5+
- Update iOS native SDK 6.12.2
6+
17
## 6.12.1
28
Release date: *2023-07-26*
39

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
1313
### <a id="plugin-build-for"> This plugin is built for
1414

15-
- Android AppsFlyer SDK **v6.12.1**
16-
- iOS AppsFlyer SDK **v6.12.0**
15+
- Android AppsFlyer SDK **v6.12.2**
16+
- iOS AppsFlyer SDK **v6.12.2**
1717

1818
## <a id="breaking-changes"> ❗❗ Breaking changes when updating to v6.x.x❗❗
1919

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ repositories {
5454
dependencies {
5555
implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
5656
implementation "com.android.installreferrer:installreferrer:${safeExtGet('installReferrerVersion', '2.1')}"
57-
api "com.appsflyer:af-android-sdk:${safeExtGet('appsflyerVersion', '6.12.1')}"
57+
api "com.appsflyer:af-android-sdk:${safeExtGet('appsflyerVersion', '6.12.2')}"
5858
}

android/src/main/java/com/appsflyer/reactnative/RNAppsFlyerConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
public class RNAppsFlyerConstants {
88

9-
final static String PLUGIN_VERSION = "6.12.1";
9+
final static String PLUGIN_VERSION = "6.12.2";
1010
final static String NO_DEVKEY_FOUND = "No 'devKey' found or its empty";
1111
final static String UNKNOWN_ERROR = "AF Unknown Error";
1212
final static String SUCCESS = "Success";

ios/RNAppsFlyer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@end
2323

2424

25-
static NSString *const kAppsFlyerPluginVersion = @"6.12.1";
25+
static NSString *const kAppsFlyerPluginVersion = @"6.12.2";
2626
static NSString *const NO_DEVKEY_FOUND = @"No 'devKey' found or its empty";
2727
static NSString *const NO_APPID_FOUND = @"No 'appId' found or its empty";
2828
static NSString *const NO_EVENT_NAME_FOUND = @"No 'eventName' found or its empty";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-appsflyer",
3-
"version": "6.12.1",
3+
"version": "6.12.2",
44
"description": "React Native Appsflyer plugin",
55
"main": "index.js",
66
"types": "index.d.ts",

react-native-appsflyer.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Pod::Spec.new do |s|
1818
# AppsFlyerFramework
1919
if defined?($RNAppsFlyerStrictMode) && ($RNAppsFlyerStrictMode == true)
2020
Pod::UI.puts "#{s.name}: Using AppsFlyerFramework/Strict mode"
21-
s.dependency 'AppsFlyerFramework/Strict', '6.12.0'
21+
s.dependency 'AppsFlyerFramework/Strict', '6.12.2'
2222
s.xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) AFSDK_NO_IDFA=1' }
2323
else
2424
if !defined?($RNAppsFlyerStrictMode)
2525
Pod::UI.puts "#{s.name}: Using default AppsFlyerFramework. You may require App Tracking Transparency. Not allowed for Kids apps."
2626
Pod::UI.puts "#{s.name}: You may set variable `$RNAppsFlyerStrictMode=true` in Podfile to use strict mode for kids apps."
2727
end
28-
s.dependency 'AppsFlyerFramework', '6.12.0'
28+
s.dependency 'AppsFlyerFramework', '6.12.2'
2929
end
3030
end

0 commit comments

Comments
 (0)