@cuby-ui/ar 0.0.1 → 0.0.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/README.md CHANGED
@@ -27,7 +27,7 @@ npx cap sync
27
27
  startAR(options?: { message?: string | undefined; } | undefined) => Promise<void>
28
28
  ```
29
29
 
30
- Launches the native AR activity.
30
+ Launches the AR activity.
31
31
 
32
32
  | Param | Type |
33
33
  | ------------- | ---------------------------------- |
Binary file
@@ -40,7 +40,7 @@ public class NativeBridge extends Plugin {
40
40
  return;
41
41
  }
42
42
 
43
- launchUnrealAR();
43
+ launchUnrealAR(call);
44
44
  }
45
45
 
46
46
  @SuppressLint("QueryPermissionsNeeded")
package/dist/docs.json CHANGED
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "returns": "Promise<void>",
19
19
  "tags": [],
20
- "docs": "Launches the native AR activity.",
20
+ "docs": "Launches the AR activity.",
21
21
  "complexTypes": [],
22
22
  "slug": "startar"
23
23
  },
@@ -1,6 +1,6 @@
1
1
  export interface NativeBridgePlugin {
2
2
  /**
3
- * Launches the native AR activity.
3
+ * Launches the AR activity.
4
4
  */
5
5
  startAR(options?: {
6
6
  message?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../src/definitions.ts"],"names":[],"mappings":"","sourcesContent":["export interface NativeBridgePlugin {\n /**\n * Launches the native AR activity.\n */\n startAR(options?: { message?: string }): Promise<void>;\n\n /**\n * Sends a message to native code to be logged. Returns a small status\n * object on success.\n */\n logMessage(options: { message: string }): Promise<void>;\n}\n"]}
1
+ {"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../src/definitions.ts"],"names":[],"mappings":"","sourcesContent":["export interface NativeBridgePlugin {\n /**\n * Launches the AR activity.\n */\n startAR(options?: { message?: string }): Promise<void>;\n\n /**\n * Sends a message to native code to be logged. Returns a small status\n * object on success.\n */\n logMessage(options: { message: string }): Promise<void>;\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuby-ui/ar",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Ar/Vr plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -9,6 +9,7 @@
9
9
  "files": [
10
10
  "android/src/main/",
11
11
  "android/build.gradle",
12
+ "android/libs",
12
13
  "dist/",
13
14
  "ios/Sources",
14
15
  "ios/Tests",
@@ -77,4 +78,4 @@
77
78
  "src": "android"
78
79
  }
79
80
  }
80
- }
81
+ }