System directories
| Method | Result |
|---|---|
| Environment.getDataDirectory() | /data |
| Environment.getDownloadCacheDirectory() | /cache |
| Environment.getRootDirectory() | /system |
External storage directories
System directories
| Method | Result |
|---|---|
| Environment.getDataDirectory() | /data |
| Environment.getDownloadCacheDirectory() | /cache |
| Environment.getRootDirectory() | /system |
External storage directories
| Notes on how to use AWS SNS: | |
| 1. Subscribe an HTTP endpoint (i.e. http://myhost/sns_endpoint) on AWS Console | |
| 2. AWS will send subscription confirmation right away | |
| 3. SNS_controller responds to subscription confirmation by sending confirmation using Fog. | |
| 4. Once AWS is happy, you can start sending notifications to your end point via SNS. |
| aws = require ('aws-lib') | |
| access_key_id = "<Your access key id>" | |
| secret_access_key = "<Your secret access key>" | |
| options = { | |
| "path" : "<Your queue URL, just the /accountid/queue_name is needed>" | |
| } | |
| sqs = aws.createSQSClient(access_key_id, secret_access_key, options) |