@ionic/portals-react-native 0.8.5 → 0.9.0
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 -4
- package/ReactNativePortals.podspec +5 -5
- package/android/build.gradle +3 -3
- package/android/gradle.properties +4 -4
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -7,12 +7,11 @@
|
|
|
7
7
|
</div>
|
|
8
8
|
<br />
|
|
9
9
|
<p align="center">
|
|
10
|
-
<img src="https://img.shields.io/badge/platform-iOS%
|
|
11
|
-
<img src="https://img.shields.io/badge/platform-Android%20SDK%
|
|
12
|
-
<img src="https://img.shields.io/badge/platform-React%20Native%200.
|
|
10
|
+
<img src="https://img.shields.io/badge/platform-iOS%2015.1%2B-lightgrey?style=flat-square" alt="Supports iOS 15.1 and up" />
|
|
11
|
+
<img src="https://img.shields.io/badge/platform-Android%20SDK%2024%2B-brightgreen?style=flat-square" alt="Supports Android SDK 24 and up" />
|
|
12
|
+
<img src="https://img.shields.io/badge/platform-React%20Native%200.80.3%2B-blue?style=flat-square" alt="Supports React Native 0.80.3 and up" />
|
|
13
13
|
</p>
|
|
14
14
|
<p align="center">
|
|
15
|
-
<a href="https://github.com/ionic-team/react-native-ionic-portals/actions/workflows/verify.yml"><img src="https://img.shields.io/github/actions/workflow/status/ionic-team/react-native-ionic-portals/verify.yml?branch=main&style=flat-square" /></a>
|
|
16
15
|
<a href="https://www.npmjs.com/package/@ionic/portals-react-native"><img src="https://img.shields.io/npm/l/@ionic/portals-react-native?style=flat-square" /></a>
|
|
17
16
|
</p>
|
|
18
17
|
<p align="center">
|
|
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
|
|
|
11
11
|
s.license = package["license"]
|
|
12
12
|
s.authors = package["author"]
|
|
13
13
|
|
|
14
|
-
s.platforms = { :ios => '
|
|
14
|
+
s.platforms = { :ios => '15.1' }
|
|
15
15
|
s.source = { :git => "https://github.com/ionic-team/ionic-portals-react-native.git", :tag => "#{s.version}" }
|
|
16
16
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
@@ -19,14 +19,14 @@ Pod::Spec.new do |s|
|
|
|
19
19
|
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
|
|
20
20
|
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
|
|
21
21
|
if respond_to?(:install_modules_dependencies, true)
|
|
22
|
-
s.dependency 'IonicPortals', '~> 0.
|
|
23
|
-
s.dependency 'IonicLiveUpdates', '~> 0.5.
|
|
22
|
+
s.dependency 'IonicPortals', '~> 0.13.0'
|
|
23
|
+
s.dependency 'IonicLiveUpdates', '~> 0.5.7'
|
|
24
24
|
install_modules_dependencies(s)
|
|
25
25
|
|
|
26
26
|
else
|
|
27
27
|
s.dependency "React-Core"
|
|
28
|
-
s.dependency 'IonicPortals', '~> 0.
|
|
29
|
-
s.dependency 'IonicLiveUpdates', '~> 0.5.
|
|
28
|
+
s.dependency 'IonicPortals', '~> 0.13.0'
|
|
29
|
+
s.dependency 'IonicLiveUpdates', '~> 0.5.7'
|
|
30
30
|
|
|
31
31
|
# Don't install the dependencies when we run `pod install` in the old architecture.
|
|
32
32
|
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
|
package/android/build.gradle
CHANGED
|
@@ -8,7 +8,7 @@ buildscript {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
dependencies {
|
|
11
|
-
classpath "com.android.tools.build:gradle:8.
|
|
11
|
+
classpath "com.android.tools.build:gradle:8.13.0"
|
|
12
12
|
// noinspection DifferentKotlinGradleVersion
|
|
13
13
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
14
14
|
}
|
|
@@ -93,9 +93,9 @@ dependencies {
|
|
|
93
93
|
// For < 0.71, this will be from the local maven repo
|
|
94
94
|
// For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
|
|
95
95
|
//noinspection GradleDynamicVersion
|
|
96
|
-
implementation "com.facebook.react:react-
|
|
96
|
+
implementation "com.facebook.react:react-android"
|
|
97
97
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
98
|
-
implementation "io.ionic:portals:0.
|
|
98
|
+
implementation "io.ionic:portals:0.13.0-rn.1"
|
|
99
99
|
implementation "io.ionic:liveupdates:0.5.+"
|
|
100
100
|
}
|
|
101
101
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
PortalsReactNative_kotlinVersion=1.
|
|
2
|
-
PortalsReactNative_minSdkVersion=
|
|
3
|
-
PortalsReactNative_targetSdkVersion=
|
|
4
|
-
PortalsReactNative_compileSdkVersion=
|
|
1
|
+
PortalsReactNative_kotlinVersion=2.1.20
|
|
2
|
+
PortalsReactNative_minSdkVersion=24
|
|
3
|
+
PortalsReactNative_targetSdkVersion=36
|
|
4
|
+
PortalsReactNative_compileSdkVersion=36
|
|
5
5
|
PortalsReactNative_ndkversion=21.4.7075529
|
|
6
6
|
android.useAndroidX=true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/portals-react-native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Portals for React Native",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -58,24 +58,25 @@
|
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@commitlint/config-conventional": "^17.0.2",
|
|
60
60
|
"@evilmartians/lefthook": "^1.5.0",
|
|
61
|
-
"@react-native/babel-preset": "0.
|
|
62
|
-
"@react-native/eslint-config": "0.
|
|
63
|
-
"@react-native/metro-config": "0.
|
|
64
|
-
"@react-native/typescript-config": "0.
|
|
61
|
+
"@react-native/babel-preset": "0.80.3",
|
|
62
|
+
"@react-native/eslint-config": "0.80.3",
|
|
63
|
+
"@react-native/metro-config": "0.80.3",
|
|
64
|
+
"@react-native/typescript-config": "0.80.3",
|
|
65
65
|
"@release-it/conventional-changelog": "^5.0.0",
|
|
66
66
|
"@types/jest": "^29.5.5",
|
|
67
|
-
"@types/react": "
|
|
67
|
+
"@types/react": "19.1.0",
|
|
68
68
|
"@typescript-eslint/eslint-plugin": "latest",
|
|
69
69
|
"commitlint": "^17.0.2",
|
|
70
70
|
"del-cli": "^5.1.0",
|
|
71
71
|
"eslint": "^8.51.0",
|
|
72
72
|
"eslint-config-prettier": "^9.0.0",
|
|
73
|
+
"eslint-plugin-ft-flow": "^2.0.1",
|
|
73
74
|
"eslint-plugin-jest": "^28.11.0",
|
|
74
75
|
"eslint-plugin-prettier": "^5.2.3",
|
|
75
76
|
"jest": "^29.7.0",
|
|
76
77
|
"prettier": "^3.0.3",
|
|
77
|
-
"react": "
|
|
78
|
-
"react-native": "0.
|
|
78
|
+
"react": "19.1.0",
|
|
79
|
+
"react-native": "0.80.3",
|
|
79
80
|
"react-native-builder-bob": "^0.23.2",
|
|
80
81
|
"release-it": "^15.0.0",
|
|
81
82
|
"turbo": "^1.10.7",
|
|
@@ -83,7 +84,7 @@
|
|
|
83
84
|
"typescript": "^5.2.2"
|
|
84
85
|
},
|
|
85
86
|
"resolutions": {
|
|
86
|
-
"@types/react": "
|
|
87
|
+
"@types/react": "19.1.0",
|
|
87
88
|
"typescript": "5.2.2"
|
|
88
89
|
},
|
|
89
90
|
"peerDependencies": {
|