Technical information

Permissions required for the program

The program needs to run INTERNET and ACCESS NETWORK STATE permissions. These permissions are not necessary for the application that does not exchange any information with the outside of your phone or even with the other applications on your phone, but for banner ads provided by Google. Google is committed to a privacy policy for data to be collected through these banners.

Android SDK minimum level

Initially I had in view the lowest level possible to make the game accessible to everyone.

However I was led to use features introduced in the level 8 of Android SDK (Android 2.2), and I set the minimum level to 8 (Android 2.2). However, Android tools are changed, and I had changed this minimum level to level 15.

More I introduced using the new features of android appeared with android 3.0 and 4.0 (action bar and Holo type themes), and I use as target android SDK 8. This allows those who have android version 3.0 and higher to access these features.

Database

The data entered by the user is stored in a program private database and retained as long as the user does not delete. It is stored as long as the application remains installed, but it is lost if you uninstall the application.

The volume of data stored for each activity can range from a few words to a few dozen words based on the information you enter, and the amount of stored data willgrow if you define a lot of new activities and do not delete the old data.

However, in the current versions of android it seems that there is a memory reservation of 128 kilobytes when the database is created, and it will be very rare that yourdatabase exceeds this size.