read_preferences
Extract and view all user preferences stored in a specific file on an Android device using the device ID, app ID, and filename.
Instructions
Reads all user preferences in a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | The application's package name. | |
deviceId | Yes | The device's serial number. | |
filename | Yes | The filename with or without the extension. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appId": {
"description": "The application's package name.",
"type": "string"
},
"deviceId": {
"description": "The device's serial number.",
"type": "string"
},
"filename": {
"description": "The filename with or without the extension.",
"type": "string"
}
},
"required": [
"deviceId",
"appId",
"filename"
],
"type": "object"
}