@clarionhq/recorder 0.1.0 → 0.1.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.
@@ -0,0 +1,9 @@
1
+ project(ClarionRecorder)
2
+ cmake_minimum_required(VERSION 3.9.0)
3
+
4
+ set(CMAKE_CXX_STANDARD 20)
5
+ set(CMAKE_CXX_STANDARD_REQUIRED ON)
6
+
7
+ add_library(${PROJECT_NAME} SHARED src/main/cpp/cpp-adapter.cpp)
8
+
9
+ include(${CMAKE_SOURCE_DIR}/../nitrogen/generated/android/ClarionRecorder+autolinking.cmake)
@@ -0,0 +1 @@
1
+ -keep class com.clarionhq.recorder.** { *; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clarionhq/recorder",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Clarion recorder — PCM capture to m4a for React Native (offline-first)",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -12,10 +12,12 @@
12
12
  "android/src",
13
13
  "android/build.gradle",
14
14
  "android/gradle.properties",
15
- "android/AndroidManifest.xml",
15
+ "android/CMakeLists.txt",
16
+ "android/proguard-rules.pro",
16
17
  "ios",
17
18
  "nitrogen",
18
19
  "nitro.json",
20
+ "react-native.config.js",
19
21
  "clarionhq-recorder.podspec",
20
22
  "README.md",
21
23
  "LICENSE",
@@ -0,0 +1,10 @@
1
+ module.exports = {
2
+ dependency: {
3
+ platforms: {
4
+ android: {
5
+ sourceDir: './android',
6
+ },
7
+ ios: {},
8
+ },
9
+ },
10
+ };