appsprint-react-native 1.1.9 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/android/libs/appsprint-sdk.aar +0 -0
- package/ios/AppSprintBridge.swift +3 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/AppSprintSDK +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Info.plist +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.abi.json +532 -193
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.package.swiftinterface +14 -40
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +14 -40
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.swiftinterface +14 -40
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/AppSprintSDK +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Info.plist +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +532 -193
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.package.swiftinterface +14 -40
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +14 -40
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +14 -40
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +532 -193
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.package.swiftinterface +14 -40
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +14 -40
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +14 -40
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/_CodeSignature/CodeResources +1 -1
- package/lib/commonjs/AppSprintAppleAds.js +46 -0
- package/lib/commonjs/index.js +7 -0
- package/lib/module/AppSprintAppleAds.js +42 -0
- package/lib/module/index.js +1 -0
- package/lib/typescript/AppSprintAppleAds.d.ts +16 -0
- package/lib/typescript/index.d.ts +2 -0
- package/lib/typescript/types.d.ts +1 -0
- package/package.json +1 -1
- package/src/AppSprintAppleAds.ts +54 -0
- package/src/index.ts +4 -0
- package/src/types.ts +2 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Mobile attribution and event tracking for React Native, with native iOS and Android SDKs bundled inside. Works with bare React Native and Expo. The JS bridge is thin: it forwards calls to the same native engines as our standalone iOS and Android SDKs.
|
|
4
4
|
|
|
5
|
+
NPM package: https://www.npmjs.com/package/appsprint-react-native
|
|
6
|
+
|
|
5
7
|
## Requirements
|
|
6
8
|
|
|
7
9
|
- React Native 0.71 or later
|
|
Binary file
|
|
@@ -26,6 +26,7 @@ class AppSprintBridge: NSObject {
|
|
|
26
26
|
let customerUserId = config["customerUserId"] as? String
|
|
27
27
|
let autoTrackSessions = config["autoTrackSessions"] as? Bool ?? true
|
|
28
28
|
let autoRefreshAttribution = config["autoRefreshAttribution"] as? Bool ?? true
|
|
29
|
+
let eventTrackingEnabled = config["eventTrackingEnabled"] as? Bool ?? true
|
|
29
30
|
let googleAdsConsent = Self.googleAdsConsent(from: config["googleAdsConsent"])
|
|
30
31
|
|
|
31
32
|
let logLevel: AppSprintLogLevel
|
|
@@ -43,6 +44,7 @@ class AppSprintBridge: NSObject {
|
|
|
43
44
|
customerUserId: customerUserId,
|
|
44
45
|
autoTrackSessions: autoTrackSessions,
|
|
45
46
|
autoRefreshAttribution: autoRefreshAttribution,
|
|
47
|
+
eventTrackingEnabled: eventTrackingEnabled,
|
|
46
48
|
googleAdsConsent: googleAdsConsent
|
|
47
49
|
)
|
|
48
50
|
|
|
@@ -56,6 +58,7 @@ class AppSprintBridge: NSObject {
|
|
|
56
58
|
customerUserId: customerUserId,
|
|
57
59
|
autoTrackSessions: autoTrackSessions,
|
|
58
60
|
autoRefreshAttribution: autoRefreshAttribution,
|
|
61
|
+
eventTrackingEnabled: eventTrackingEnabled,
|
|
59
62
|
googleAdsConsent: googleAdsConsent
|
|
60
63
|
)
|
|
61
64
|
}
|
|
Binary file
|
|
Binary file
|