react-native-kookit 0.2.1 → 0.2.3
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/FTP_README.md +322 -0
- package/android/src/main/java/expo/modules/kookit/FtpClient.kt +399 -0
- package/android/src/main/java/expo/modules/kookit/ReactNativeKookitModule.kt +163 -1
- package/build/ReactNativeKookit.types.d.ts +30 -0
- package/build/ReactNativeKookit.types.d.ts.map +1 -1
- package/build/ReactNativeKookit.types.js.map +1 -1
- package/build/ReactNativeKookitModule.d.ts +56 -1
- package/build/ReactNativeKookitModule.d.ts.map +1 -1
- package/build/ReactNativeKookitModule.js.map +1 -1
- package/build/ReactNativeKookitModule.web.d.ts +10 -1
- package/build/ReactNativeKookitModule.web.d.ts.map +1 -1
- package/build/ReactNativeKookitModule.web.js +28 -0
- package/build/ReactNativeKookitModule.web.js.map +1 -1
- package/ios/ReactNativeKookit.podspec +3 -0
- package/ios/ReactNativeKookitModule.swift +889 -3
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-kookit",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "React Native module for intercepting volume button presses on iOS and Android",
|
|
3
|
+
"version": "0.2.3",
|
|
4
|
+
"description": "React Native module for intercepting volume button presses on iOS and Android, with FTP client functionality",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
"volume-keys",
|
|
26
26
|
"volume-buttons",
|
|
27
27
|
"key-interception",
|
|
28
|
+
"ftp",
|
|
29
|
+
"ftp-client",
|
|
30
|
+
"file-transfer",
|
|
28
31
|
"react-native-kookit",
|
|
29
32
|
"ReactNativeKookit"
|
|
30
33
|
],
|