cuoral-ionic 0.0.8 → 0.0.9
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/CuoralIonic.podspec +17 -0
- package/README.md +22 -0
- package/package.json +3 -2
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
|
|
3
|
+
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
4
|
+
|
|
5
|
+
Pod::Spec.new do |s|
|
|
6
|
+
s.name = 'CuoralIonic'
|
|
7
|
+
s.version = package['version']
|
|
8
|
+
s.summary = package['description']
|
|
9
|
+
s.license = package['license']
|
|
10
|
+
s.homepage = package['repository']['url']
|
|
11
|
+
s.author = package['author']
|
|
12
|
+
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
|
|
13
|
+
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
|
|
14
|
+
s.ios.deployment_target = '13.0'
|
|
15
|
+
s.dependency 'Capacitor'
|
|
16
|
+
s.swift_version = '5.1'
|
|
17
|
+
end
|
package/README.md
CHANGED
|
@@ -57,6 +57,28 @@ Add to your `Info.plist`:
|
|
|
57
57
|
|
|
58
58
|
**Note:** Screen recording permission is requested automatically by iOS when recording starts. No additional permissions are needed for crash tracking or intelligence features.
|
|
59
59
|
|
|
60
|
+
### 📱 Google Play Store Declaration (Android Only)
|
|
61
|
+
|
|
62
|
+
**IMPORTANT:** When submitting your app to Google Play Store, you'll be asked to declare why your app uses `FOREGROUND_SERVICE_MEDIA_PROJECTION` (screen recording permission).
|
|
63
|
+
|
|
64
|
+
**Quick Action:**
|
|
65
|
+
1. Go to Play Console → **Policy** → **App Content** → **Foreground Service Types**
|
|
66
|
+
2. Find `FOREGROUND_SERVICE_MEDIA_PROJECTION` → Click **Manage**
|
|
67
|
+
3. Select category: **Customer Support / Bug Reporting**
|
|
68
|
+
4. Use the justification text from [PLAY_STORE_QUICK_GUIDE.md](PLAY_STORE_QUICK_GUIDE.md)
|
|
69
|
+
|
|
70
|
+
**Why This is Required:**
|
|
71
|
+
- Screen recording is a "sensitive permission" that requires declaration
|
|
72
|
+
- Google wants to ensure it's used appropriately (which it is - user-initiated support)
|
|
73
|
+
- This is a simple form, not a special approval process
|
|
74
|
+
- No code changes needed - your app is already configured correctly
|
|
75
|
+
|
|
76
|
+
**📄 Documentation:**
|
|
77
|
+
- **Quick Guide:** [PLAY_STORE_QUICK_GUIDE.md](PLAY_STORE_QUICK_GUIDE.md) - Copy-paste justification text
|
|
78
|
+
- **Full Guide:** [PLAY_STORE_DECLARATION.md](PLAY_STORE_DECLARATION.md) - Complete information and privacy policy updates
|
|
79
|
+
|
|
80
|
+
**Note:** iOS App Store does not require this declaration.
|
|
81
|
+
|
|
60
82
|
## Quick Start
|
|
61
83
|
|
|
62
84
|
### Option 1: Modal with Floating Button (Recommended)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cuoral-ionic",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Cuoral Ionic Framework Library -
|
|
3
|
+
"version": "0.0.9",
|
|
4
|
+
"description": "Cuoral Ionic Framework Library - silent churn prevention platform for Ionic apps. Provides screen recording, user interaction capture, and support widget integration for enhanced customer support experiences.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.esm.js",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"assets",
|
|
13
13
|
"ios",
|
|
14
14
|
"android",
|
|
15
|
+
"CuoralIonic.podspec",
|
|
15
16
|
"README.md"
|
|
16
17
|
],
|
|
17
18
|
"scripts": {
|