Skip to content

Commit b09f42d

Browse files
Merge pull request #677 from AppsFlyerSDK/releases/6.x.x/6.17.x/6.17.9-rc3
New Plugin version release 6.17.9
2 parents 708504e + 6cf22d5 commit b09f42d

9 files changed

Lines changed: 16 additions & 25 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 6.17.9
2+
Release date: *2026-03-31*
3+
4+
5+
16
## 6.17.8
27
Release date: *2025-12-17*
38

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ To do so, please follow [this article](https://support.appsflyer.com/hc/en-us/ar
1212

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

15-
- Android AppsFlyer SDK **v6.17.5**
16-
- iOS AppsFlyer SDK **v6.17.8**
15+
- Android AppsFlyer SDK **v6.17.6**
16+
- iOS AppsFlyer SDK **v6.17.9**
1717
- Minimum tested with React-Native **v0.62.0** (older versions might be supported)
1818

1919
## <a id="release-updates"> Release Updates

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ repositories {
7070
dependencies {
7171
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.7.10" // Add Kotlin standard library
7272
implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
73-
api "com.appsflyer:af-android-sdk:${safeExtGet('appsflyerVersion', '6.17.5')}"
73+
api "com.appsflyer:af-android-sdk:${safeExtGet('appsflyerVersion', '6.17.6')}"
7474
implementation "com.android.installreferrer:installreferrer:${safeExtGet('installReferrerVersion', '2.2')}"
7575
if (includeConnector){
7676
implementation 'com.appsflyer:purchase-connector:2.1.1'

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.17.8";
9+
final static String PLUGIN_VERSION = "6.17.9";
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";

index.d.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -415,14 +415,3 @@ declare module "react-native-appsflyer" {
415415

416416
export default appsFlyer;
417417
}
418-
419-
// Explicit ambient declarations for ESLint compatibility
420-
// ESLint's import resolver doesn't recognize exports inside 'declare module' blocks.
421-
// These top-level declarations allow ESLint to detect the exports.
422-
declare const StoreKitVersion: { readonly SK1: "SK1"; readonly SK2: "SK2" };
423-
declare const AppsFlyerPurchaseConnector: any; // Type is defined in declare module above
424-
declare const AppsFlyerPurchaseConnectorConfig: any; // Type is defined in declare module above
425-
declare const appsFlyer: any; // Type is defined in declare module above
426-
427-
export { StoreKitVersion, AppsFlyerPurchaseConnector, AppsFlyerPurchaseConnectorConfig };
428-
export { appsFlyer as default };

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.17.8";
25+
static NSString *const kAppsFlyerPluginVersion = @"6.17.9";
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.17.8",
3+
"version": "6.17.9",
44
"description": "React Native Appsflyer plugin",
55
"main": "index.js",
66
"types": "index.d.ts",

react-native-appsflyer.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ Pod::Spec.new do |s|
3030
# AppsFlyerPurchaseConnector
3131
if defined?($AppsFlyerPurchaseConnector) && ($AppsFlyerPurchaseConnector == true)
3232
Pod::UI.puts "#{s.name}: Including PurchaseConnector."
33-
s.dependency 'PurchaseConnector', '6.17.8'
33+
s.dependency 'PurchaseConnector', '6.17.9'
3434
end
3535

3636
# AppsFlyerFramework
3737
if defined?($RNAppsFlyerStrictMode) && ($RNAppsFlyerStrictMode == true)
3838
Pod::UI.puts "#{s.name}: Using AppsFlyerFramework/Strict mode"
39-
s.dependency 'AppsFlyerFramework/Strict', '6.17.8'
39+
s.dependency 'AppsFlyerFramework/Strict', '6.17.9'
4040
s.xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) AFSDK_NO_IDFA=1' }
4141
else
4242
if !defined?($RNAppsFlyerStrictMode)
4343
Pod::UI.puts "#{s.name}: Using default AppsFlyerFramework. You may require App Tracking Transparency. Not allowed for Kids apps."
4444
Pod::UI.puts "#{s.name}: You may set variable `$RNAppsFlyerStrictMode=true` in Podfile to use strict mode for kids apps."
4545
end
46-
s.dependency 'AppsFlyerFramework', '6.17.8'
46+
s.dependency 'AppsFlyerFramework', '6.17.9'
4747
end
4848
end

react-native.config.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,10 @@ module.exports = {
44
dependency: {
55
platforms: {
66
android: {
7-
packageImportPath: [
8-
'import com.appsflyer.reactnative.RNAppsFlyerPackage;',
9-
'import com.appsflyer.reactnative.PCAppsFlyerPackage;',
10-
].join('\n'),
7+
packageImportPath: 'import com.appsflyer.reactnative.RNAppsFlyerPackage;',
118
packageInstance: [
129
'new RNAppsFlyerPackage()',
13-
'new PCAppsFlyerPackage()',
10+
'new com.appsflyer.reactnative.PCAppsFlyerPackage()',
1411
].join(',\n'),
1512
},
1613
},

0 commit comments

Comments
 (0)