@eohjsc/react-native-smart-city 0.7.31 → 0.7.33
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/android/build.gradle +6 -5
- package/package.json +16 -14
package/android/build.gradle
CHANGED
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
// original location:
|
|
11
11
|
// - https://github.com/facebook/react-native/blob/0.58-stable/local-cli/templates/HelloWorld/android/app/build.gradle
|
|
12
12
|
|
|
13
|
-
def DEFAULT_COMPILE_SDK_VERSION =
|
|
14
|
-
def DEFAULT_BUILD_TOOLS_VERSION = '
|
|
13
|
+
def DEFAULT_COMPILE_SDK_VERSION = 35
|
|
14
|
+
def DEFAULT_BUILD_TOOLS_VERSION = '35.0.0'
|
|
15
15
|
def DEFAULT_MIN_SDK_VERSION = 24
|
|
16
|
-
def DEFAULT_TARGET_SDK_VERSION =
|
|
16
|
+
def DEFAULT_TARGET_SDK_VERSION = 35
|
|
17
17
|
|
|
18
18
|
def safeExtGet(prop, fallback) {
|
|
19
19
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
@@ -39,6 +39,7 @@ buildscript {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
android {
|
|
42
|
+
namespace "com.eohjsc.smartcity"
|
|
42
43
|
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
|
|
43
44
|
buildToolsVersion safeExtGet('buildToolsVersion', DEFAULT_BUILD_TOOLS_VERSION)
|
|
44
45
|
defaultConfig {
|
|
@@ -111,12 +112,12 @@ afterEvaluate { project ->
|
|
|
111
112
|
}
|
|
112
113
|
|
|
113
114
|
task androidJavadocJar(type: Jar, dependsOn: androidJavadoc) {
|
|
114
|
-
|
|
115
|
+
archiveClassifier = 'javadoc'
|
|
115
116
|
from androidJavadoc.destinationDir
|
|
116
117
|
}
|
|
117
118
|
|
|
118
119
|
task androidSourcesJar(type: Jar) {
|
|
119
|
-
|
|
120
|
+
archiveClassifier = 'sources'
|
|
120
121
|
from android.sourceSets.main.java.srcDirs
|
|
121
122
|
include '**/*.java'
|
|
122
123
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eohjsc/react-native-smart-city",
|
|
3
3
|
"title": "React Native Smart Home",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.33",
|
|
5
5
|
"description": "TODO",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"files": [
|
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
67
67
|
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
|
68
68
|
"@babel/plugin-transform-private-methods": "^7.24.7",
|
|
69
|
+
"@babel/preset-env": "7.26.0",
|
|
69
70
|
"@babel/runtime": "^7.20.0",
|
|
70
71
|
"@eohjsc/react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
71
72
|
"@formatjs/intl-getcanonicallocales": "^1.4.5",
|
|
@@ -77,6 +78,7 @@
|
|
|
77
78
|
"@react-native-async-storage/async-storage": "^1.23.1",
|
|
78
79
|
"@react-native-clipboard/clipboard": "^1.14.1",
|
|
79
80
|
"@react-native-community/checkbox": "^0.5.17",
|
|
81
|
+
"@react-native-community/cli": "15.0.1",
|
|
80
82
|
"@react-native-community/datetimepicker": "https://github.com/hinh-eoh/datepicker",
|
|
81
83
|
"@react-native-community/eslint-config": "^2.0.0",
|
|
82
84
|
"@react-native-community/geolocation": "^2.0.2",
|
|
@@ -84,10 +86,10 @@
|
|
|
84
86
|
"@react-native-community/slider": "^3.0.3",
|
|
85
87
|
"@react-native-community/toolbar-android": "^0.1.0-rc.2",
|
|
86
88
|
"@react-native-segmented-control/segmented-control": "^2.5.2",
|
|
87
|
-
"@react-navigation/bottom-tabs": "
|
|
88
|
-
"@react-navigation/drawer": "
|
|
89
|
-
"@react-navigation/native": "
|
|
90
|
-
"@react-navigation/native-stack": "
|
|
89
|
+
"@react-navigation/bottom-tabs": "7.2.0",
|
|
90
|
+
"@react-navigation/drawer": "7.1.1",
|
|
91
|
+
"@react-navigation/native": "7.0.14",
|
|
92
|
+
"@react-navigation/native-stack": "7.2.0",
|
|
91
93
|
"@sentry/react-native": "^6.2.0",
|
|
92
94
|
"@testing-library/react-hooks": "^6.0.0",
|
|
93
95
|
"@types/jest": "^29.2.1",
|
|
@@ -120,7 +122,7 @@
|
|
|
120
122
|
"lodash": "^4.17.19",
|
|
121
123
|
"lottie-react-native": "^7.1.0",
|
|
122
124
|
"md5": "^2.3.0",
|
|
123
|
-
"metro-react-native-babel-preset": "0.
|
|
125
|
+
"metro-react-native-babel-preset": "0.76.9",
|
|
124
126
|
"moment": "^2.27.0",
|
|
125
127
|
"moment-timezone": "^0.5.32",
|
|
126
128
|
"node-html-parser": "^2.0.2",
|
|
@@ -133,12 +135,12 @@
|
|
|
133
135
|
"pusher-js-auth": "^4.0.1",
|
|
134
136
|
"python-struct": "^1.1.3",
|
|
135
137
|
"querystring": "^0.2.0",
|
|
136
|
-
"react": "18.
|
|
138
|
+
"react": "18.3.1",
|
|
137
139
|
"react-content-loader": "^6.0.3",
|
|
138
|
-
"react-dom": "18.
|
|
140
|
+
"react-dom": "18.3.1",
|
|
139
141
|
"react-hooks-global-state": "^2.1.0",
|
|
140
142
|
"react-i18next": "^11.8.12",
|
|
141
|
-
"react-native": "0.
|
|
143
|
+
"react-native": "0.76.5",
|
|
142
144
|
"react-native-alert-async": "^1.0.5",
|
|
143
145
|
"react-native-android-location-enabler": "^1.2.2",
|
|
144
146
|
"react-native-base64": "^0.1.0",
|
|
@@ -154,7 +156,7 @@
|
|
|
154
156
|
"react-native-draggable-flatlist": "^4.0.1",
|
|
155
157
|
"react-native-fast-image": "^8.6.3",
|
|
156
158
|
"react-native-geocoder": "^0.5.0",
|
|
157
|
-
"react-native-gesture-handler": "
|
|
159
|
+
"react-native-gesture-handler": "2.21.2",
|
|
158
160
|
"react-native-get-location": "^2.0.0",
|
|
159
161
|
"react-native-image-crop-picker": "0.41.2",
|
|
160
162
|
"react-native-image-resizer": "^1.4.5",
|
|
@@ -174,12 +176,12 @@
|
|
|
174
176
|
"react-native-permissions": "3.6.0",
|
|
175
177
|
"react-native-popover-view": "^5.1.8",
|
|
176
178
|
"react-native-progress": "^5.0.0",
|
|
177
|
-
"react-native-reanimated": "3.
|
|
179
|
+
"react-native-reanimated": "3.16.1",
|
|
178
180
|
"react-native-responsive-fontsize": "^0.5.1",
|
|
179
|
-
"react-native-safe-area-context": "
|
|
180
|
-
"react-native-screens": "
|
|
181
|
+
"react-native-safe-area-context": "4.14.0",
|
|
182
|
+
"react-native-screens": "4.4.0",
|
|
181
183
|
"react-native-super-grid": "^4.0.3",
|
|
182
|
-
"react-native-svg": "
|
|
184
|
+
"react-native-svg": "15.8.0",
|
|
183
185
|
"react-native-svg-transformer": "^0.14.3",
|
|
184
186
|
"react-native-toast-message": "^2.1.1",
|
|
185
187
|
"react-native-udp": "^4.1.7",
|