-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnativephp.json
More file actions
36 lines (36 loc) · 1.03 KB
/
nativephp.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"namespace": "SmsReader",
"bridge_functions": [
{
"name": "SmsReader.GetMessages",
"android": "com.atendwa.smsreader.SmsReaderFunctions.GetMessages",
"ios": "SmsReaderFunctions.GetMessages",
"description": "Read SMS messages from the Android inbox. Accepts optional sender, limit, and since (ms timestamp) filters."
}
],
"events": [
"Atendwa\\SmsReader\\Events\\SmsReceived"
],
"android": {
"min_version": 26,
"permissions": [
"android.permission.READ_SMS",
"android.permission.RECEIVE_SMS"
],
"receivers": [
{
"name": "com.atendwa.smsreader.SmsReceiver",
"exported": false,
"intent_filters": [
{
"action": "android.provider.Telephony.SMS_RECEIVED"
}
]
}
]
},
"ios": {
"min_version": "16.0",
"info_plist": {}
}
}