An android app that can be used to:
get all messages sent or received from a particular phone number.
Generate a PDF document from the messages
Save messages in json to phone storage
Initialize the Worker class first
FileWorker.init(context: Context)
It has functions that can:
Fetch all phone messages
FileWorker.getAllSentSms(null)
FileWorker.dumpAllSms(null)
Fetch or save messages sent to numbers that match a regex pattern
FileWorker.getAllSentSms(number: String)
FileWorker.dumpAllSms(number: String)
Filter messages and get all messages sorted in a list.
FileWorker.dumpFilteredSms(number: String)
Generate a PDF document of all the messages
FileWorker.generateSmsPdf(number: String)
The use cases are limitless,
You can clone this repository and make your own modifications to suite your needs.
This repo will not be maintained and will not be accepting PRs