-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnativephp.json
More file actions
129 lines (125 loc) · 5.71 KB
/
Copy pathnativephp.json
File metadata and controls
129 lines (125 loc) · 5.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "codingwithrk/firebase-crashlytics",
"version": "1.0.0",
"description": "A NativePHP Mobile plugin for Firebase Crashlytics. Records fatal and non-fatal errors, breadcrumb logs, user identifiers and custom keys, and reports them to the Firebase console - modeled after the firebase_crashlytics Flutter package.",
"namespace": "FirebaseCrashlytics",
"keywords": ["firebase", "crashlytics", "crash-reporting", "error-tracking", "monitoring"],
"category": "utilities",
"license": "MIT",
"pricing": {
"type": "free"
},
"author": {
"name": "CodingwithRK",
"email": "pappalarajkumar@gmail.com",
"url": "https://codingwithrk.com"
},
"homepage": "https://github.com/codingwithrk/firebase-crashlytics",
"repository": "https://github.com/codingwithrk/firebase-crashlytics",
"funding": [],
"platforms": [
"android",
"ios"
],
"icon": "resources/icon.png",
"screenshots": [],
"bridge_functions": [
{
"name": "FirebaseCrashlytics.RecordError",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.RecordError",
"ios": "FirebaseCrashlyticsFunctions.RecordError",
"description": "Records a caught exception/error with Crashlytics"
},
{
"name": "FirebaseCrashlytics.Log",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.Log",
"ios": "FirebaseCrashlyticsFunctions.Log",
"description": "Adds a custom log message to be included in the next crash/error report"
},
{
"name": "FirebaseCrashlytics.SetUserId",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.SetUserId",
"ios": "FirebaseCrashlyticsFunctions.SetUserId",
"description": "Sets a user identifier that will be associated with subsequent crash reports"
},
{
"name": "FirebaseCrashlytics.SetCustomKey",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.SetCustomKey",
"ios": "FirebaseCrashlyticsFunctions.SetCustomKey",
"description": "Sets a custom key/value pair that will be associated with subsequent crash reports"
},
{
"name": "FirebaseCrashlytics.Crash",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.Crash",
"ios": "FirebaseCrashlyticsFunctions.Crash",
"description": "Forces an immediate, unrecoverable native crash for testing your Crashlytics integration"
},
{
"name": "FirebaseCrashlytics.SetCollectionEnabled",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.SetCollectionEnabled",
"ios": "FirebaseCrashlyticsFunctions.SetCollectionEnabled",
"description": "Enables or disables automatic crash report collection"
},
{
"name": "FirebaseCrashlytics.IsCollectionEnabled",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.IsCollectionEnabled",
"ios": "FirebaseCrashlyticsFunctions.IsCollectionEnabled",
"description": "Returns whether automatic crash report collection is enabled"
},
{
"name": "FirebaseCrashlytics.CheckForUnsentReports",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.CheckForUnsentReports",
"ios": "FirebaseCrashlyticsFunctions.CheckForUnsentReports",
"description": "Checks whether there are any unsent crash reports on disk"
},
{
"name": "FirebaseCrashlytics.SendUnsentReports",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.SendUnsentReports",
"ios": "FirebaseCrashlyticsFunctions.SendUnsentReports",
"description": "Uploads any unsent crash reports to Firebase"
},
{
"name": "FirebaseCrashlytics.DeleteUnsentReports",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.DeleteUnsentReports",
"ios": "FirebaseCrashlyticsFunctions.DeleteUnsentReports",
"description": "Deletes any unsent crash reports from disk"
},
{
"name": "FirebaseCrashlytics.DidCrashOnPreviousExecution",
"android": "com.codingwithrk.plugins.firebase_crashlytics.FirebaseCrashlyticsFunctions.DidCrashOnPreviousExecution",
"ios": "FirebaseCrashlyticsFunctions.DidCrashOnPreviousExecution",
"description": "Returns whether the app crashed during its previous execution"
}
],
"android": {
"min_version": "29",
"permissions": [
"android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE"
],
"gradle_plugins": [
{
"id": "com.google.firebase.crashlytics",
"version": "3.0.7"
}
],
"dependencies": {
"implementation": [
"com.google.firebase:firebase-crashlytics"
]
}
},
"ios": {
"min_version": "18.0",
"info_plist": {},
"dependencies": {
"pods": [
{"name": "Firebase/Crashlytics", "version": "~> 12.0"}
]
}
},
"service_provider": "Codingwithrk\\FirebaseCrashlytics\\FirebaseCrashlyticsServiceProvider",
"hooks": {
"pre_compile": "nativephp:firebase-crashlytics:apply-gradle-plugin"
}
}