react-native-earl-thermal-printer 1.0.0 → 1.0.1
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/LICENSE +13 -0
- package/README.md +44 -2
- package/android/.classpath +6 -0
- package/android/.project +34 -0
- package/android/.settings/org.eclipse.buildship.core.prefs +2 -0
- package/android/build/.transforms/01d27a401e27226770afe5d01de80a4b/results.bin +1 -0
- package/android/build/.transforms/1861b00fc7aef98f3b52e5f126b2142f/results.bin +1 -0
- package/android/build/.transforms/1861b00fc7aef98f3b52e5f126b2142f/transformed/classes/classes_dex/classes.dex +0 -0
- package/android/build/.transforms/be6909eb75c4fe10baeb7def8f107123/results.bin +1 -0
- package/android/build/.transforms/fd003f6142b240a78eb754d45552561d/results.bin +1 -0
- package/android/build/.transforms/fd003f6142b240a78eb754d45552561d/transformed/classes/classes_dex/classes.dex +0 -0
- package/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +1 -1
- package/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +1 -1
- package/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +1 -1
- package/android/build/intermediates/incremental/packageDebugAssets/merger.xml +1 -1
- package/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +10 -10
- package/android/build/outputs/logs/manifest-merger-debug-report.txt +20 -20
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright (c) 2026 Rin
|
|
2
|
+
|
|
3
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
4
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
5
|
+
copyright notice and this permission notice appear in all copies.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
8
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
9
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
10
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
11
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
12
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
13
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
# react-native-earl-thermal-printer
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+

|
|
4
7
|
|
|
5
|
-
A
|
|
8
|
+
A React Native library for USB, Bluetooth (BLE), and Network (TCP/IP) thermal receipt printers. Modern, high-performance thermal printer library for React Native. Built with the New Architecture (TurboModules) for synchronous communication, zero legacy bridge overhead, and Android 12+ Bluetooth compliance.
|
|
6
9
|
|
|
7
10
|
Built for the **React Native New Architecture** (TurboModules / Codegen). Supports Android and iOS.
|
|
8
11
|
|
|
@@ -417,6 +420,45 @@ const styles = StyleSheet.create({
|
|
|
417
420
|
|
|
418
421
|
---
|
|
419
422
|
|
|
423
|
+
## Running the Example
|
|
424
|
+
|
|
425
|
+
A working example app lives in the `example/` directory.
|
|
426
|
+
|
|
427
|
+
### Prerequisites
|
|
428
|
+
|
|
429
|
+
- [Node.js](https://nodejs.org/) (>= 18)
|
|
430
|
+
- [Yarn](https://classic.yarnpkg.com/) (v1) — required because the example uses `link:..`
|
|
431
|
+
- Android Studio with an emulator or a physical device (USB debugging enabled)
|
|
432
|
+
- For iOS: Xcode with CocoaPods
|
|
433
|
+
|
|
434
|
+
### Setup & Run
|
|
435
|
+
|
|
436
|
+
```bash
|
|
437
|
+
# 1. Install root dependencies
|
|
438
|
+
yarn install
|
|
439
|
+
|
|
440
|
+
# 2. Install example dependencies
|
|
441
|
+
cd example
|
|
442
|
+
yarn install
|
|
443
|
+
|
|
444
|
+
# 3. Run on Android
|
|
445
|
+
yarn android
|
|
446
|
+
|
|
447
|
+
# 4. (iOS) Install pods, then run
|
|
448
|
+
cd ios && pod install && cd ..
|
|
449
|
+
yarn ios
|
|
450
|
+
```
|
|
451
|
+
|
|
452
|
+
> **Windows users:** If the build fails with a `mkdir` / path error, the project path is too long for CMake. Use `subst` to shorten it:
|
|
453
|
+
>
|
|
454
|
+
> ```powershell
|
|
455
|
+
> subst P: "C:\path\to\react-native-thermal-receipt-printer"
|
|
456
|
+
> cd P:\example\android
|
|
457
|
+
> .\gradlew.bat app:assembleDebug
|
|
458
|
+
> ```
|
|
459
|
+
|
|
460
|
+
---
|
|
461
|
+
|
|
420
462
|
## New Architecture
|
|
421
463
|
|
|
422
464
|
This library is built for the React Native **New Architecture** using TurboModules and Codegen. It requires:
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<classpath>
|
|
3
|
+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
|
|
4
|
+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
|
|
5
|
+
<classpathentry kind="output" path="bin/default"/>
|
|
6
|
+
</classpath>
|
package/android/.project
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<projectDescription>
|
|
3
|
+
<name>react-native-earl-thermal-printer</name>
|
|
4
|
+
<comment>Project react-native-earl-thermal-printer created by Buildship.</comment>
|
|
5
|
+
<projects>
|
|
6
|
+
</projects>
|
|
7
|
+
<buildSpec>
|
|
8
|
+
<buildCommand>
|
|
9
|
+
<name>org.eclipse.jdt.core.javabuilder</name>
|
|
10
|
+
<arguments>
|
|
11
|
+
</arguments>
|
|
12
|
+
</buildCommand>
|
|
13
|
+
<buildCommand>
|
|
14
|
+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
|
|
15
|
+
<arguments>
|
|
16
|
+
</arguments>
|
|
17
|
+
</buildCommand>
|
|
18
|
+
</buildSpec>
|
|
19
|
+
<natures>
|
|
20
|
+
<nature>org.eclipse.jdt.core.javanature</nature>
|
|
21
|
+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
|
|
22
|
+
</natures>
|
|
23
|
+
<filteredResources>
|
|
24
|
+
<filter>
|
|
25
|
+
<id>1771390919502</id>
|
|
26
|
+
<name></name>
|
|
27
|
+
<type>30</type>
|
|
28
|
+
<matcher>
|
|
29
|
+
<id>org.eclipse.core.resources.regexFilterMatcher</id>
|
|
30
|
+
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
|
|
31
|
+
</matcher>
|
|
32
|
+
</filter>
|
|
33
|
+
</filteredResources>
|
|
34
|
+
</projectDescription>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
i/classes_global-synthetics
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
o/classes
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
i/classes_dex
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
o/classes
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
#Wed Feb 18
|
|
1
|
+
#Wed Feb 18 12:50:08 PST 2026
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="
|
|
2
|
+
<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\res"><file path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\res\values\strings.xml" qualifiers=""><string name="app_name">RNPrinter</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\debug\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\debug\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\build\generated\res\resValues\debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated" generated-set="generated$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\build\generated\res\resValues\debug"/></dataSet><mergedItems/></merger>
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="
|
|
2
|
+
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\debug\shaders"/></dataSet></merger>
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="
|
|
2
|
+
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\assets"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\debug\assets"/></dataSet><dataSet config="generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\build\intermediates\shader_assets\debug\out"/></dataSet></merger>
|
|
@@ -5,19 +5,19 @@
|
|
|
5
5
|
5 <uses-sdk android:minSdkVersion="21" />
|
|
6
6
|
6
|
|
7
7
|
7 <uses-permission android:name="android.permission.INTERNET" />
|
|
8
|
-
7-->
|
|
9
|
-
7-->
|
|
8
|
+
7-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:4:5-67
|
|
9
|
+
7-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:4:22-64
|
|
10
10
|
8 <uses-permission android:name="android.permission.BLUETOOTH" />
|
|
11
|
-
8-->
|
|
12
|
-
8-->
|
|
11
|
+
8-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:5:5-68
|
|
12
|
+
8-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:5:22-65
|
|
13
13
|
9 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
14
|
-
9-->
|
|
15
|
-
9-->
|
|
14
|
+
9-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:6:5-74
|
|
15
|
+
9-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:6:22-71
|
|
16
16
|
10 <uses-permission android:name="android.hardware.usb.UsbAccessory" />
|
|
17
|
-
10-->
|
|
18
|
-
10-->
|
|
17
|
+
10-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:7:5-73
|
|
18
|
+
10-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:7:22-70
|
|
19
19
|
11 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
20
|
-
11-->
|
|
21
|
-
11-->
|
|
20
|
+
11-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:8:5-76
|
|
21
|
+
11-->C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:8:22-73
|
|
22
22
|
12
|
|
23
23
|
13</manifest>
|
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
-- Merging decision tree log ---
|
|
2
2
|
manifest
|
|
3
|
-
ADDED from
|
|
4
|
-
INJECTED from
|
|
3
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:1:1-10:12
|
|
4
|
+
INJECTED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:1:1-10:12
|
|
5
5
|
package
|
|
6
|
-
ADDED from
|
|
7
|
-
INJECTED from
|
|
6
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:2:5-38
|
|
7
|
+
INJECTED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml
|
|
8
8
|
xmlns:android
|
|
9
|
-
ADDED from
|
|
9
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:1:11-69
|
|
10
10
|
uses-permission#android.permission.INTERNET
|
|
11
|
-
ADDED from
|
|
11
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:4:5-67
|
|
12
12
|
android:name
|
|
13
|
-
ADDED from
|
|
13
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:4:22-64
|
|
14
14
|
uses-permission#android.permission.BLUETOOTH
|
|
15
|
-
ADDED from
|
|
15
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:5:5-68
|
|
16
16
|
android:name
|
|
17
|
-
ADDED from
|
|
17
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:5:22-65
|
|
18
18
|
uses-permission#android.permission.BLUETOOTH_ADMIN
|
|
19
|
-
ADDED from
|
|
19
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:6:5-74
|
|
20
20
|
android:name
|
|
21
|
-
ADDED from
|
|
21
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:6:22-71
|
|
22
22
|
uses-permission#android.hardware.usb.UsbAccessory
|
|
23
|
-
ADDED from
|
|
23
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:7:5-73
|
|
24
24
|
android:name
|
|
25
|
-
ADDED from
|
|
25
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:7:22-70
|
|
26
26
|
uses-permission#android.permission.ACCESS_WIFI_STATE
|
|
27
|
-
ADDED from
|
|
27
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:8:5-76
|
|
28
28
|
android:name
|
|
29
|
-
ADDED from
|
|
29
|
+
ADDED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml:8:22-73
|
|
30
30
|
uses-sdk
|
|
31
|
-
INJECTED from
|
|
32
|
-
INJECTED from
|
|
33
|
-
INJECTED from
|
|
31
|
+
INJECTED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml reason: use-sdk injection requested
|
|
32
|
+
INJECTED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml
|
|
33
|
+
INJECTED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml
|
|
34
34
|
android:targetSdkVersion
|
|
35
|
-
INJECTED from
|
|
35
|
+
INJECTED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml
|
|
36
36
|
android:minSdkVersion
|
|
37
|
-
INJECTED from
|
|
37
|
+
INJECTED from C:\Users\earlo\Desktop\react-native-thermal-receipt-printer\example\node_modules\react-native-earl-thermal-printer\android\src\main\AndroidManifest.xml
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-earl-thermal-printer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A modern, high-performance thermal printer library for React Native. Built with the New Architecture (TurboModules) for synchronous communication, zero legacy bridge overhead, and Android 12+ Bluetooth compliance.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|