appsprint-react-native 1.0.4 → 1.1.1
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 +3 -3
- package/android/libs/appsprint-sdk.aar +0 -0
- package/android/src/main/AndroidManifest.xml +1 -0
- package/android/src/main/kotlin/com/appsprint/AppSprintBridgeModule.kt +30 -0
- package/ios/AppSprintBridge.swift +26 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/AppSprintSDK +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.abi.json +2183 -160
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.package.swiftinterface +30 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +30 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.swiftinterface +30 -1
- 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/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +2183 -160
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.package.swiftinterface +30 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +30 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +30 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +2183 -160
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.package.swiftinterface +30 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +30 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +30 -1
- package/lib/typescript/types.d.ts +26 -0
- package/package.json +1 -1
- package/plugin/build/index.js +1 -0
- package/plugin/src/index.ts +1 -0
- package/src/types.ts +26 -0
|
@@ -5,11 +5,14 @@
|
|
|
5
5
|
import AdServices
|
|
6
6
|
import AdSupport
|
|
7
7
|
import AppTrackingTransparency
|
|
8
|
+
import CoreTelephony
|
|
8
9
|
import CryptoKit
|
|
9
10
|
import Foundation
|
|
10
11
|
import Foundation/*.Bundle*/
|
|
11
12
|
import Foundation/*.ProcessInfo*/
|
|
12
13
|
import Foundation/*.URL*/
|
|
14
|
+
import Metal
|
|
15
|
+
import Network
|
|
13
16
|
import Swift
|
|
14
17
|
import UIKit
|
|
15
18
|
import _Concurrency
|
|
@@ -181,6 +184,32 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
181
184
|
public let deviceModel: Swift.String?
|
|
182
185
|
public let screenWidth: Swift.Int?
|
|
183
186
|
public let screenHeight: Swift.Int?
|
|
187
|
+
public let nativeScreenWidth: Swift.Int?
|
|
188
|
+
public let nativeScreenHeight: Swift.Int?
|
|
189
|
+
public let screenScale: Swift.Double?
|
|
190
|
+
public let hardwareConcurrency: Swift.Int?
|
|
191
|
+
public let processorCount: Swift.Int?
|
|
192
|
+
public let maxTouchPoints: Swift.Int?
|
|
193
|
+
public let memoryGb: Swift.Int?
|
|
194
|
+
public let lowPowerMode: Swift.Bool?
|
|
195
|
+
public let batteryState: Swift.String?
|
|
196
|
+
public let batteryLevelBucket: Swift.String?
|
|
197
|
+
public let preferredLanguages: [Swift.String]?
|
|
198
|
+
public let timezoneOffsetMinutes: Swift.Int?
|
|
199
|
+
public let deviceManufacturer: Swift.String?
|
|
200
|
+
public let deviceBrand: Swift.String?
|
|
201
|
+
public let deviceProduct: Swift.String?
|
|
202
|
+
public let deviceHardware: Swift.String?
|
|
203
|
+
public let gpuVendor: Swift.String?
|
|
204
|
+
public let gpuRenderer: Swift.String?
|
|
205
|
+
public let connectionType: Swift.String?
|
|
206
|
+
public let networkType: Swift.String?
|
|
207
|
+
public let carrierName: Swift.String?
|
|
208
|
+
public let carrierCountryCode: Swift.String?
|
|
209
|
+
public let mobileCountryCode: Swift.String?
|
|
210
|
+
public let mobileNetworkCode: Swift.String?
|
|
211
|
+
public let sdkPlatform: Swift.String?
|
|
212
|
+
public let sdkVersion: Swift.String?
|
|
184
213
|
public let locale: Swift.String?
|
|
185
214
|
public let timezone: Swift.String?
|
|
186
215
|
public let osVersion: Swift.String?
|
|
@@ -189,7 +218,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
189
218
|
public let idfa: Swift.String?
|
|
190
219
|
public let adServicesToken: Swift.String?
|
|
191
220
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
192
|
-
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
221
|
+
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, nativeScreenWidth: Swift.Int? = nil, nativeScreenHeight: Swift.Int? = nil, screenScale: Swift.Double? = nil, hardwareConcurrency: Swift.Int? = nil, processorCount: Swift.Int? = nil, maxTouchPoints: Swift.Int? = nil, memoryGb: Swift.Int? = nil, lowPowerMode: Swift.Bool? = nil, batteryState: Swift.String? = nil, batteryLevelBucket: Swift.String? = nil, preferredLanguages: [Swift.String]? = nil, timezoneOffsetMinutes: Swift.Int? = nil, deviceManufacturer: Swift.String? = nil, deviceBrand: Swift.String? = nil, deviceProduct: Swift.String? = nil, deviceHardware: Swift.String? = nil, gpuVendor: Swift.String? = nil, gpuRenderer: Swift.String? = nil, connectionType: Swift.String? = nil, networkType: Swift.String? = nil, carrierName: Swift.String? = nil, carrierCountryCode: Swift.String? = nil, mobileCountryCode: Swift.String? = nil, mobileNetworkCode: Swift.String? = nil, sdkPlatform: Swift.String? = nil, sdkVersion: Swift.String? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
193
222
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
194
223
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
195
224
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -5,11 +5,14 @@
|
|
|
5
5
|
import AdServices
|
|
6
6
|
import AdSupport
|
|
7
7
|
import AppTrackingTransparency
|
|
8
|
+
import CoreTelephony
|
|
8
9
|
import CryptoKit
|
|
9
10
|
import Foundation
|
|
10
11
|
import Foundation/*.Bundle*/
|
|
11
12
|
import Foundation/*.ProcessInfo*/
|
|
12
13
|
import Foundation/*.URL*/
|
|
14
|
+
import Metal
|
|
15
|
+
import Network
|
|
13
16
|
import Swift
|
|
14
17
|
import UIKit
|
|
15
18
|
import _Concurrency
|
|
@@ -181,6 +184,32 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
181
184
|
public let deviceModel: Swift.String?
|
|
182
185
|
public let screenWidth: Swift.Int?
|
|
183
186
|
public let screenHeight: Swift.Int?
|
|
187
|
+
public let nativeScreenWidth: Swift.Int?
|
|
188
|
+
public let nativeScreenHeight: Swift.Int?
|
|
189
|
+
public let screenScale: Swift.Double?
|
|
190
|
+
public let hardwareConcurrency: Swift.Int?
|
|
191
|
+
public let processorCount: Swift.Int?
|
|
192
|
+
public let maxTouchPoints: Swift.Int?
|
|
193
|
+
public let memoryGb: Swift.Int?
|
|
194
|
+
public let lowPowerMode: Swift.Bool?
|
|
195
|
+
public let batteryState: Swift.String?
|
|
196
|
+
public let batteryLevelBucket: Swift.String?
|
|
197
|
+
public let preferredLanguages: [Swift.String]?
|
|
198
|
+
public let timezoneOffsetMinutes: Swift.Int?
|
|
199
|
+
public let deviceManufacturer: Swift.String?
|
|
200
|
+
public let deviceBrand: Swift.String?
|
|
201
|
+
public let deviceProduct: Swift.String?
|
|
202
|
+
public let deviceHardware: Swift.String?
|
|
203
|
+
public let gpuVendor: Swift.String?
|
|
204
|
+
public let gpuRenderer: Swift.String?
|
|
205
|
+
public let connectionType: Swift.String?
|
|
206
|
+
public let networkType: Swift.String?
|
|
207
|
+
public let carrierName: Swift.String?
|
|
208
|
+
public let carrierCountryCode: Swift.String?
|
|
209
|
+
public let mobileCountryCode: Swift.String?
|
|
210
|
+
public let mobileNetworkCode: Swift.String?
|
|
211
|
+
public let sdkPlatform: Swift.String?
|
|
212
|
+
public let sdkVersion: Swift.String?
|
|
184
213
|
public let locale: Swift.String?
|
|
185
214
|
public let timezone: Swift.String?
|
|
186
215
|
public let osVersion: Swift.String?
|
|
@@ -189,7 +218,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
189
218
|
public let idfa: Swift.String?
|
|
190
219
|
public let adServicesToken: Swift.String?
|
|
191
220
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
192
|
-
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
221
|
+
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, nativeScreenWidth: Swift.Int? = nil, nativeScreenHeight: Swift.Int? = nil, screenScale: Swift.Double? = nil, hardwareConcurrency: Swift.Int? = nil, processorCount: Swift.Int? = nil, maxTouchPoints: Swift.Int? = nil, memoryGb: Swift.Int? = nil, lowPowerMode: Swift.Bool? = nil, batteryState: Swift.String? = nil, batteryLevelBucket: Swift.String? = nil, preferredLanguages: [Swift.String]? = nil, timezoneOffsetMinutes: Swift.Int? = nil, deviceManufacturer: Swift.String? = nil, deviceBrand: Swift.String? = nil, deviceProduct: Swift.String? = nil, deviceHardware: Swift.String? = nil, gpuVendor: Swift.String? = nil, gpuRenderer: Swift.String? = nil, connectionType: Swift.String? = nil, networkType: Swift.String? = nil, carrierName: Swift.String? = nil, carrierCountryCode: Swift.String? = nil, mobileCountryCode: Swift.String? = nil, mobileNetworkCode: Swift.String? = nil, sdkPlatform: Swift.String? = nil, sdkVersion: Swift.String? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
193
222
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
194
223
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
195
224
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -5,11 +5,14 @@
|
|
|
5
5
|
import AdServices
|
|
6
6
|
import AdSupport
|
|
7
7
|
import AppTrackingTransparency
|
|
8
|
+
import CoreTelephony
|
|
8
9
|
import CryptoKit
|
|
9
10
|
import Foundation
|
|
10
11
|
import Foundation/*.Bundle*/
|
|
11
12
|
import Foundation/*.ProcessInfo*/
|
|
12
13
|
import Foundation/*.URL*/
|
|
14
|
+
import Metal
|
|
15
|
+
import Network
|
|
13
16
|
import Swift
|
|
14
17
|
import UIKit
|
|
15
18
|
import _Concurrency
|
|
@@ -181,6 +184,32 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
181
184
|
public let deviceModel: Swift.String?
|
|
182
185
|
public let screenWidth: Swift.Int?
|
|
183
186
|
public let screenHeight: Swift.Int?
|
|
187
|
+
public let nativeScreenWidth: Swift.Int?
|
|
188
|
+
public let nativeScreenHeight: Swift.Int?
|
|
189
|
+
public let screenScale: Swift.Double?
|
|
190
|
+
public let hardwareConcurrency: Swift.Int?
|
|
191
|
+
public let processorCount: Swift.Int?
|
|
192
|
+
public let maxTouchPoints: Swift.Int?
|
|
193
|
+
public let memoryGb: Swift.Int?
|
|
194
|
+
public let lowPowerMode: Swift.Bool?
|
|
195
|
+
public let batteryState: Swift.String?
|
|
196
|
+
public let batteryLevelBucket: Swift.String?
|
|
197
|
+
public let preferredLanguages: [Swift.String]?
|
|
198
|
+
public let timezoneOffsetMinutes: Swift.Int?
|
|
199
|
+
public let deviceManufacturer: Swift.String?
|
|
200
|
+
public let deviceBrand: Swift.String?
|
|
201
|
+
public let deviceProduct: Swift.String?
|
|
202
|
+
public let deviceHardware: Swift.String?
|
|
203
|
+
public let gpuVendor: Swift.String?
|
|
204
|
+
public let gpuRenderer: Swift.String?
|
|
205
|
+
public let connectionType: Swift.String?
|
|
206
|
+
public let networkType: Swift.String?
|
|
207
|
+
public let carrierName: Swift.String?
|
|
208
|
+
public let carrierCountryCode: Swift.String?
|
|
209
|
+
public let mobileCountryCode: Swift.String?
|
|
210
|
+
public let mobileNetworkCode: Swift.String?
|
|
211
|
+
public let sdkPlatform: Swift.String?
|
|
212
|
+
public let sdkVersion: Swift.String?
|
|
184
213
|
public let locale: Swift.String?
|
|
185
214
|
public let timezone: Swift.String?
|
|
186
215
|
public let osVersion: Swift.String?
|
|
@@ -189,7 +218,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
189
218
|
public let idfa: Swift.String?
|
|
190
219
|
public let adServicesToken: Swift.String?
|
|
191
220
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
192
|
-
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
221
|
+
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, nativeScreenWidth: Swift.Int? = nil, nativeScreenHeight: Swift.Int? = nil, screenScale: Swift.Double? = nil, hardwareConcurrency: Swift.Int? = nil, processorCount: Swift.Int? = nil, maxTouchPoints: Swift.Int? = nil, memoryGb: Swift.Int? = nil, lowPowerMode: Swift.Bool? = nil, batteryState: Swift.String? = nil, batteryLevelBucket: Swift.String? = nil, preferredLanguages: [Swift.String]? = nil, timezoneOffsetMinutes: Swift.Int? = nil, deviceManufacturer: Swift.String? = nil, deviceBrand: Swift.String? = nil, deviceProduct: Swift.String? = nil, deviceHardware: Swift.String? = nil, gpuVendor: Swift.String? = nil, gpuRenderer: Swift.String? = nil, connectionType: Swift.String? = nil, networkType: Swift.String? = nil, carrierName: Swift.String? = nil, carrierCountryCode: Swift.String? = nil, mobileCountryCode: Swift.String? = nil, mobileNetworkCode: Swift.String? = nil, sdkPlatform: Swift.String? = nil, sdkVersion: Swift.String? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
193
222
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
194
223
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
195
224
|
public init(from decoder: any Swift.Decoder) throws
|