react-native-pointr 8.15.0 → 8.16.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/CHANGELOG.md +13 -0
- package/android/build.gradle +3 -3
- package/ios/PTRNativeLibrary.m +6 -1
- package/package.json +1 -1
- package/react-native-pointr.podspec +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [8.16.1]
|
|
8
|
+
|
|
9
|
+
## Updates
|
|
10
|
+
|
|
11
|
+
- iOS fix for `import react_native_pointr-Swift`
|
|
12
|
+
- iOS fix `pod install` issue
|
|
13
|
+
- Android Java compatibility increased to version 11
|
|
14
|
+
|
|
15
|
+
## [8.16.0]
|
|
16
|
+
|
|
17
|
+
### Updates
|
|
18
|
+
- Mobile SDK 8.16.0 integration.
|
|
19
|
+
|
|
7
20
|
## [8.15.0]
|
|
8
21
|
|
|
9
22
|
### Features
|
package/android/build.gradle
CHANGED
|
@@ -77,8 +77,8 @@ android {
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
compileOptions {
|
|
80
|
-
sourceCompatibility JavaVersion.
|
|
81
|
-
targetCompatibility JavaVersion.
|
|
80
|
+
sourceCompatibility JavaVersion.VERSION_11
|
|
81
|
+
targetCompatibility JavaVersion.VERSION_11
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
|
|
@@ -95,7 +95,7 @@ dependencies {
|
|
|
95
95
|
//noinspection GradleDynamicVersion
|
|
96
96
|
implementation "com.facebook.react:react-native:+"
|
|
97
97
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
98
|
-
implementation "com.pointrlabs:pointr:8
|
|
98
|
+
implementation "com.pointrlabs:pointr:8+"
|
|
99
99
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
100
100
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
|
101
101
|
implementation 'com.google.android.material:material:1.12.0'
|
package/ios/PTRNativeLibrary.m
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
#import "PTRNativeLibrary.h"
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
#if __has_include("react_native_pointr-Swift.h")
|
|
4
|
+
#import "react_native_pointr-Swift.h"
|
|
5
|
+
#else
|
|
6
|
+
#import <react_native_pointr/react_native_pointr-Swift.h>
|
|
7
|
+
#endif
|
|
8
|
+
|
|
4
9
|
#import <React/RCTUtils.h>
|
|
5
10
|
|
|
6
11
|
@interface PTRNativeLibrary() <RCTBridgeModule, PTREventManagerDelegate>
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
18
18
|
|
|
19
|
-
s.dependency 'PointrKit', '8
|
|
19
|
+
s.dependency 'PointrKit', '~> 8'
|
|
20
20
|
|
|
21
21
|
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
|
|
22
22
|
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
|