@functionland/react-native-fula 1.8.0 → 1.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.
Files changed (40) hide show
  1. package/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
  2. package/android/.gradle/7.5.1/checksums/sha1-checksums.bin +0 -0
  3. package/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
  4. package/android/.gradle/7.6/checksums/checksums.lock +0 -0
  5. package/android/.gradle/7.6/checksums/md5-checksums.bin +0 -0
  6. package/android/.gradle/7.6/checksums/sha1-checksums.bin +0 -0
  7. package/android/.gradle/7.6/executionHistory/executionHistory.bin +0 -0
  8. package/android/.gradle/7.6/executionHistory/executionHistory.lock +0 -0
  9. package/android/.gradle/7.6/fileHashes/fileHashes.bin +0 -0
  10. package/android/.gradle/7.6/fileHashes/fileHashes.lock +0 -0
  11. package/android/.gradle/7.6/fileHashes/resourceHashesCache.bin +0 -0
  12. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  13. package/android/.gradle/buildOutputCleanup/cache.properties +1 -1
  14. package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  15. package/android/.gradle/file-system.probe +0 -0
  16. package/android/build.gradle +69 -69
  17. package/android/src/main/java/land/fx/fula/FulaModule.java +1384 -1368
  18. package/lib/commonjs/index.js.map +1 -1
  19. package/lib/commonjs/interfaces/fulaNativeModule.js.map +1 -1
  20. package/lib/commonjs/protocols/blockchain.js +12 -12
  21. package/lib/commonjs/protocols/blockchain.js.map +1 -1
  22. package/lib/commonjs/protocols/fxblox.js +23 -4
  23. package/lib/commonjs/protocols/fxblox.js.map +1 -1
  24. package/lib/commonjs/types/fxblox.js.map +1 -1
  25. package/lib/module/index.js.map +1 -1
  26. package/lib/module/interfaces/fulaNativeModule.js.map +1 -1
  27. package/lib/module/protocols/blockchain.js +12 -12
  28. package/lib/module/protocols/blockchain.js.map +1 -1
  29. package/lib/module/protocols/fxblox.js +21 -3
  30. package/lib/module/protocols/fxblox.js.map +1 -1
  31. package/lib/module/types/fxblox.js.map +1 -1
  32. package/lib/typescript/interfaces/fulaNativeModule.d.ts +1 -0
  33. package/lib/typescript/protocols/fxblox.d.ts +1 -0
  34. package/lib/typescript/types/fxblox.d.ts +4 -0
  35. package/package.json +157 -157
  36. package/src/index.tsx +4 -4
  37. package/src/interfaces/fulaNativeModule.ts +119 -87
  38. package/src/protocols/blockchain.ts +318 -274
  39. package/src/protocols/fxblox.ts +49 -28
  40. package/src/types/fxblox.ts +8 -4
@@ -1,2 +1,2 @@
1
- #Thu May 25 20:22:46 IRDT 2023
1
+ #Sun May 28 11:39:35 IRDT 2023
2
2
  gradle.version=7.5.1
Binary file
@@ -1,69 +1,69 @@
1
- buildscript {
2
- if (project == rootProject) {
3
- repositories {
4
- google()
5
- mavenCentral()
6
- jcenter()
7
- }
8
-
9
- dependencies {
10
- classpath 'com.android.tools.build:gradle:4.2.2'
11
- }
12
- }
13
- }
14
-
15
- apply plugin: 'com.android.library'
16
-
17
- def safeExtGet(prop, fallback) {
18
- rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
19
- }
20
-
21
- android {
22
- compileSdk 33
23
- defaultConfig {
24
- minSdkVersion safeExtGet('Fula_minSdkVersion', 26)
25
- targetSdkVersion safeExtGet('Fula_targetSdkVersion', 31)
26
- versionCode 1
27
- versionName "1.0"
28
-
29
- }
30
-
31
- buildTypes {
32
- release {
33
- minifyEnabled false
34
- }
35
- }
36
- lintOptions {
37
- disable 'GradleCompatible'
38
- }
39
- compileOptions {
40
- sourceCompatibility JavaVersion.VERSION_1_8
41
- targetCompatibility JavaVersion.VERSION_1_8
42
- }
43
- ndkVersion '25.1.8937393'
44
- }
45
-
46
- repositories {
47
- mavenLocal()
48
- google()
49
- jcenter()
50
- mavenCentral()
51
- maven {
52
- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
53
- url("$rootDir/../node_modules/react-native/android")
54
- }
55
-
56
-
57
-
58
- // Add this repo to get go-fula package
59
- maven { url 'https://jitpack.io' }
60
- }
61
-
62
- dependencies {
63
- //noinspection GradleDynamicVersion
64
- implementation "com.facebook.react:react-native:+" // From node_modules
65
- implementation 'com.github.functionland:fula-build-aar:1.8.0' // From jitpack.io
66
- implementation 'com.github.functionland:wnfs-build-aar:v1.4.1' // From jitpack.io
67
- implementation 'commons-io:commons-io:20030203.000550'
68
- // implementation files('mobile.aar')
69
- }
1
+ buildscript {
2
+ if (project == rootProject) {
3
+ repositories {
4
+ google()
5
+ mavenCentral()
6
+ jcenter()
7
+ }
8
+
9
+ dependencies {
10
+ classpath 'com.android.tools.build:gradle:4.2.2'
11
+ }
12
+ }
13
+ }
14
+
15
+ apply plugin: 'com.android.library'
16
+
17
+ def safeExtGet(prop, fallback) {
18
+ rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
19
+ }
20
+
21
+ android {
22
+ compileSdk 33
23
+ defaultConfig {
24
+ minSdkVersion safeExtGet('Fula_minSdkVersion', 26)
25
+ targetSdkVersion safeExtGet('Fula_targetSdkVersion', 31)
26
+ versionCode 1
27
+ versionName "1.0"
28
+
29
+ }
30
+
31
+ buildTypes {
32
+ release {
33
+ minifyEnabled false
34
+ }
35
+ }
36
+ lintOptions {
37
+ disable 'GradleCompatible'
38
+ }
39
+ compileOptions {
40
+ sourceCompatibility JavaVersion.VERSION_1_8
41
+ targetCompatibility JavaVersion.VERSION_1_8
42
+ }
43
+ ndkVersion '25.1.8937393'
44
+ }
45
+
46
+ repositories {
47
+ mavenLocal()
48
+ google()
49
+ jcenter()
50
+ mavenCentral()
51
+ maven {
52
+ // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
53
+ url("$rootDir/../node_modules/react-native/android")
54
+ }
55
+
56
+
57
+
58
+ // Add this repo to get go-fula package
59
+ maven { url 'https://jitpack.io' }
60
+ }
61
+
62
+ dependencies {
63
+ //noinspection GradleDynamicVersion
64
+ implementation "com.facebook.react:react-native:+" // From node_modules
65
+ implementation 'com.github.functionland:fula-build-aar:1.9.0' // From jitpack.io
66
+ implementation 'com.github.functionland:wnfs-build-aar:v1.4.1' // From jitpack.io
67
+ implementation 'commons-io:commons-io:20030203.000550'
68
+ // implementation files('mobile.aar')
69
+ }