react-native-gizwits-sdk-v5 1.6.3 → 1.6.4
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 +4 -4
- package/package.json +1 -1
- package/react-native-gizwits-sdk-v5.podspec +1 -1
- package/.DS_Store +0 -0
- package/.eslintignore +0 -3
- package/.eslintrc.js +0 -11
- package/.gitignore +0 -67
- package/.idea/.gitignore +0 -3
- package/.idea/MarsCodeWorkspaceAppSettings.xml +0 -6
- package/.idea/caches/deviceStreaming.xml +0 -1041
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/react-native-gizwits-sdk-v5.iml +0 -9
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -52
- package/.prettierrc.js +0 -5
- package/android/.DS_Store +0 -0
- package/android/src/main/java/com/gizwits/.DS_Store +0 -0
- package/babel.config.js +0 -3
- package/ios/.DS_Store +0 -0
- package/ios/RNGizSDKManagerModule.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- package/ios/RNGizSDKManagerModule.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/ios/RNGizSDKManagerModule.xcodeproj/project.xcworkspace/xcuserdata/roc.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RNGizSDKManagerModule.xcodeproj/xcuserdata/roc.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
- package/src/Base.tsx +0 -28
- package/src/__tests__/index.test.ts +0 -5
- package/src/device.tsx +0 -314
- package/src/index.tsx +0 -433
- package/src/types.ts +0 -253
- package/src/user.tsx +0 -125
- package/tsconfig.json +0 -18
- package/yarn.lock +0 -6942
package/android/build.gradle
CHANGED
|
@@ -67,10 +67,10 @@ dependencies {
|
|
|
67
67
|
// ESPTouch
|
|
68
68
|
implementation 'com.github.EspressifApp:lib-esptouch-android:1.1.1'
|
|
69
69
|
|
|
70
|
-
implementation("io.github.gizwits:sdk:1.4.
|
|
71
|
-
implementation("io.github.gizwits:sdk-bluetooth:1.4.
|
|
72
|
-
implementation("io.github.gizwits:sdk-lan:1.4.
|
|
73
|
-
implementation("io.github.gizwits:sdk-mqtt:1.4.
|
|
70
|
+
implementation("io.github.gizwits:sdk:1.4.5")
|
|
71
|
+
implementation("io.github.gizwits:sdk-bluetooth:1.4.5")
|
|
72
|
+
implementation("io.github.gizwits:sdk-lan:1.4.5")
|
|
73
|
+
implementation("io.github.gizwits:sdk-mqtt:1.4.5")
|
|
74
74
|
// implementation files('libs/sdk-release.aar', 'libs/sdk-bluetooth-release.aar', 'libs/sdk-lan-release.aar', 'libs/sdk-mqtt-release.aar')
|
|
75
75
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_coroutine_version")
|
|
76
76
|
// retrofit
|
package/package.json
CHANGED
package/.DS_Store
DELETED
|
Binary file
|
package/.eslintignore
DELETED
package/.eslintrc.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
extends: ['@react-native-community', 'plugin:prettier/recommended'],
|
|
3
|
-
plugins: ['simple-import-sort'],
|
|
4
|
-
root: true,
|
|
5
|
-
rules: {
|
|
6
|
-
'import/order': 'off',
|
|
7
|
-
'simple-import-sort/exports': 'error',
|
|
8
|
-
'simple-import-sort/imports': 'error',
|
|
9
|
-
'sort-imports': 'off',
|
|
10
|
-
},
|
|
11
|
-
}
|
package/.gitignore
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
# OSX
|
|
2
|
-
#
|
|
3
|
-
.DS_Store
|
|
4
|
-
|
|
5
|
-
# Xcode
|
|
6
|
-
#
|
|
7
|
-
build/
|
|
8
|
-
*.pbxuser
|
|
9
|
-
!default.pbxuser
|
|
10
|
-
*.mode1v3
|
|
11
|
-
!default.mode1v3
|
|
12
|
-
*.mode2v3
|
|
13
|
-
!default.mode2v3
|
|
14
|
-
*.perspectivev3
|
|
15
|
-
!default.perspectivev3
|
|
16
|
-
xcuserdata
|
|
17
|
-
*.xccheckout
|
|
18
|
-
*.moved-aside
|
|
19
|
-
DerivedData
|
|
20
|
-
*.hmap
|
|
21
|
-
*.ipa
|
|
22
|
-
*.xcuserstate
|
|
23
|
-
|
|
24
|
-
# Android/IntelliJ
|
|
25
|
-
#
|
|
26
|
-
build/
|
|
27
|
-
.idea
|
|
28
|
-
.gradle
|
|
29
|
-
local.properties
|
|
30
|
-
*.iml
|
|
31
|
-
*.hprof
|
|
32
|
-
/android/gradlew
|
|
33
|
-
/android/gradlew.bat
|
|
34
|
-
/android/gradle/
|
|
35
|
-
|
|
36
|
-
# node.js
|
|
37
|
-
#
|
|
38
|
-
node_modules/
|
|
39
|
-
npm-debug.log
|
|
40
|
-
yarn-error.log
|
|
41
|
-
|
|
42
|
-
# BUCK
|
|
43
|
-
buck-out/
|
|
44
|
-
\.buckd/
|
|
45
|
-
*.keystore
|
|
46
|
-
!debug.keystore
|
|
47
|
-
|
|
48
|
-
# fastlane
|
|
49
|
-
#
|
|
50
|
-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
|
|
51
|
-
# screenshots whenever they are needed.
|
|
52
|
-
# For more information about the recommended setup visit:
|
|
53
|
-
# https://docs.fastlane.tools/best-practices/source-control/
|
|
54
|
-
|
|
55
|
-
*/fastlane/report.xml
|
|
56
|
-
*/fastlane/Preview.html
|
|
57
|
-
*/fastlane/screenshots
|
|
58
|
-
|
|
59
|
-
# Bundle artifact
|
|
60
|
-
*.jsbundle
|
|
61
|
-
|
|
62
|
-
# CocoaPods
|
|
63
|
-
/ios/Pods/
|
|
64
|
-
|
|
65
|
-
# Library
|
|
66
|
-
lib/
|
|
67
|
-
docs
|
package/.idea/.gitignore
DELETED