@oscilar/react-native-oscilar-module 3.0.0 → 3.0.2
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/OscilarModule.podspec +1 -1
- package/README.md +4 -5
- package/android/build.gradle +16 -1
- package/package.json +18 -12
- package/android/Osclib-release-protected.aar +0 -0
package/OscilarModule.podspec
CHANGED
package/README.md
CHANGED
|
@@ -37,11 +37,10 @@ useEffect(() => {
|
|
|
37
37
|
|
|
38
38
|
const transactionID = await generateTransactionID();
|
|
39
39
|
```
|
|
40
|
+
## Native iOS SDK Version
|
|
40
41
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
Copyright
|
|
42
|
+
The version of the native iOS SDK used by this module can be found in the `OscilarModule.podspec` file.
|
|
44
43
|
|
|
45
|
-
|
|
44
|
+
## License
|
|
46
45
|
|
|
47
|
-
|
|
46
|
+
Copyright
|
package/android/build.gradle
CHANGED
|
@@ -6,6 +6,13 @@ buildscript {
|
|
|
6
6
|
repositories {
|
|
7
7
|
google()
|
|
8
8
|
mavenCentral()
|
|
9
|
+
maven {
|
|
10
|
+
url = uri("https://maven.pkg.github.com/Oscilar-ext/android-rel")
|
|
11
|
+
credentials {
|
|
12
|
+
username = System.getenv("GPR_USER") ?: "default_user"
|
|
13
|
+
password = System.getenv("GPR_API_KEY") ?: ""
|
|
14
|
+
}
|
|
15
|
+
}
|
|
9
16
|
}
|
|
10
17
|
|
|
11
18
|
dependencies {
|
|
@@ -77,6 +84,13 @@ android {
|
|
|
77
84
|
repositories {
|
|
78
85
|
mavenCentral()
|
|
79
86
|
google()
|
|
87
|
+
maven {
|
|
88
|
+
url = uri("https://maven.pkg.github.com/Oscilar-ext/android-rel")
|
|
89
|
+
credentials {
|
|
90
|
+
username = System.getenv("GPR_USER") ?: "default_user"
|
|
91
|
+
password = System.getenv("GPR_API_KEY") ?: ""
|
|
92
|
+
}
|
|
93
|
+
}
|
|
80
94
|
}
|
|
81
95
|
|
|
82
96
|
def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
@@ -84,7 +98,8 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
|
84
98
|
dependencies {
|
|
85
99
|
implementation "com.facebook.react:react-android"
|
|
86
100
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
87
|
-
debugImplementation
|
|
101
|
+
debugImplementation "com.oscilar:osclib:3.1.1"
|
|
102
|
+
releaseImplementation "com.oscilar:osclib:3.1.1"
|
|
88
103
|
implementation "com.google.code.gson:gson:2.10.1"
|
|
89
104
|
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
|
90
105
|
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oscilar/react-native-oscilar-module",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Oscilar module for React Native",
|
|
5
5
|
"source": "./src/index.tsx",
|
|
6
6
|
"main": "./lib/commonjs/index.js",
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
44
44
|
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
|
|
45
45
|
"prepare": "bob build",
|
|
46
|
-
"release": "release-it"
|
|
46
|
+
"release": "release-it",
|
|
47
|
+
"detox": "detox"
|
|
47
48
|
},
|
|
48
49
|
"keywords": [
|
|
49
50
|
"react-native",
|
|
@@ -65,26 +66,33 @@
|
|
|
65
66
|
"registry": "https://registry.npmjs.org/"
|
|
66
67
|
},
|
|
67
68
|
"devDependencies": {
|
|
69
|
+
"@babel/core": "^7.27.1",
|
|
70
|
+
"@babel/preset-typescript": "^7.27.1",
|
|
68
71
|
"@commitlint/config-conventional": "^17.0.2",
|
|
69
72
|
"@evilmartians/lefthook": "^1.5.0",
|
|
70
73
|
"@react-native-community/cli": "latest",
|
|
74
|
+
"@react-native/babel-preset": "^0.79.2",
|
|
71
75
|
"@react-native/eslint-config": "^0.73.1",
|
|
72
76
|
"@release-it/conventional-changelog": "^9.0.2",
|
|
73
|
-
"@types/jest": "^29.5.
|
|
77
|
+
"@types/jest": "^29.5.14",
|
|
74
78
|
"@types/react": "^18.2.44",
|
|
75
79
|
"commitlint": "^17.0.2",
|
|
76
80
|
"del-cli": "^5.1.0",
|
|
81
|
+
"detox": "^20.37.0",
|
|
77
82
|
"eslint": "^8.51.0",
|
|
78
83
|
"eslint-config-prettier": "^9.0.0",
|
|
84
|
+
"eslint-plugin-ft-flow": "latest",
|
|
79
85
|
"eslint-plugin-prettier": "^5.0.1",
|
|
80
86
|
"jest": "^29.7.0",
|
|
87
|
+
"metro-react-native-babel-preset": "^0.77.0",
|
|
81
88
|
"prettier": "^3.0.3",
|
|
82
89
|
"react": "19.0.0",
|
|
83
90
|
"react-native": "^0.79.1",
|
|
84
91
|
"react-native-builder-bob": "^0.37.0",
|
|
85
92
|
"release-it": "^19.0.1",
|
|
86
93
|
"turbo": "^1.10.7",
|
|
87
|
-
"typescript": "^5.2.2"
|
|
94
|
+
"typescript": "^5.2.2",
|
|
95
|
+
"wait-on": "^7.2.0"
|
|
88
96
|
},
|
|
89
97
|
"resolutions": {
|
|
90
98
|
"@types/react": "^18.2.44",
|
|
@@ -98,13 +106,6 @@
|
|
|
98
106
|
"example"
|
|
99
107
|
],
|
|
100
108
|
"packageManager": "yarn@3.6.1",
|
|
101
|
-
"jest": {
|
|
102
|
-
"preset": "react-native",
|
|
103
|
-
"modulePathIgnorePatterns": [
|
|
104
|
-
"<rootDir>/example/node_modules",
|
|
105
|
-
"<rootDir>/lib/"
|
|
106
|
-
]
|
|
107
|
-
},
|
|
108
109
|
"commitlint": {
|
|
109
110
|
"extends": [
|
|
110
111
|
"@commitlint/config-conventional"
|
|
@@ -149,7 +150,8 @@
|
|
|
149
150
|
},
|
|
150
151
|
"eslintIgnore": [
|
|
151
152
|
"node_modules/",
|
|
152
|
-
"lib/"
|
|
153
|
+
"lib/",
|
|
154
|
+
".detoxrc.js"
|
|
153
155
|
],
|
|
154
156
|
"prettier": {
|
|
155
157
|
"quoteProps": "consistent",
|
|
@@ -187,5 +189,9 @@
|
|
|
187
189
|
"type": "legacy-module",
|
|
188
190
|
"languages": "kotlin-swift",
|
|
189
191
|
"version": "0.48.3"
|
|
192
|
+
},
|
|
193
|
+
"dependencies": {
|
|
194
|
+
"detox-cli": "^20.0.0",
|
|
195
|
+
"react-native-dotenv": "^3.4.11"
|
|
190
196
|
}
|
|
191
197
|
}
|
|
Binary file
|