Sent this email yesterday but it never got posted. Trying again without the attachment to see if that is blocking it. 

You can also view the changes here (ignore the *.iml and .idea/* changes):
https://github.com/tfasz/otp/compare/8fdaf72159abe0984531e0639678a61f4dbdf235...master

On Mon, Nov 2, 2015 at 9:09 AM, toddfas <toddfas@gmail.com> wrote:
I transferred to a new phone a few weeks back and was reminded once again about how much of a pain it is to setup all of my OTP tokens again (9 accounts in total). I was previously using Google Authenticator but found FreeOTP recently and decided to switch to it since I was starting from scratch. Nice app and thanks for all of the work putting it together. I liked the fact it is entirely offline and does not try to do too much (ala Authy). 

Export and import was the one feature I found to be missing (and based on the Google Play store comments a number of other people agree). While I am not an Android developer, I had some time this weekend and decided to take a shot at implementing it. The primary target use case is backing up tokens on one phone to external storage so they can be stored somewhere safe and eventually imported onto a new phone.

Changes consist of:
- a new export and import menu option created by the About menu
- when you pick export you are prompted to enter an encryption passphrase
- a JSON array of the tokens are generated
- the JSON array is encrypted with the passphrase provided 
  - library provides AES 128 encryption with salt and HMAC authentication
- the encrypted contents are Base64 encoded and written to a specific file on external storage (ctx.getExternalFilesDir(), "tokenBackup.txt")

Import process is the reverse:
- choose import menu option
- enter decryption passphrase
- decrypt contents from same file location (assuming file exists or has been restored to same location)
- call TokenPersistence.add() for each token - will skip any existing matching tokens

Would be interested in getting feedback on this and see if it is something that the team would consider incorporating. I've attached a patch file.

Thanks,
Todd