in reply to using perl to get sms messages
More or less standard location for SMS under Android is /data/data/com.android.providers.telephony/databases/mmssms.db. This is SQLite database and one can read it using simple sqlite3 command.
Normally, this path is not accessible by the users. So you can access SMS messages only from inside of Android application, using Android API. Alternatively you may try to root your phone and then you'll get direct access to the file
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: using perl to get sms messages
by Aldebaran (Curate) on Oct 30, 2016 at 09:14 UTC | |
by marto (Cardinal) on Oct 30, 2016 at 13:04 UTC | |
by Aldebaran (Curate) on Nov 13, 2016 at 09:55 UTC | |
by marto (Cardinal) on Nov 13, 2016 at 10:50 UTC |