EULA ( End User License Agreement ) is not required to publish your Android app on Market, but it’s a good practice to protect yourself by concluding an agreement with your user. So in this post I will describe simple and quick method of implementing EULA in Android application.
Our EULA implementation is based on class available here. We are using Eclipse 3.3 with ADT plugin installed. So we need to do the following steps to add EULA to Android application:
- Download or copy Eula class source code from here.
- Add Eula.java file containing Eula class source code to Android application.
- Add necessary string resources.
- Add text file, containing EULA text into ‘asset’ application folder.
- Call Eula.show method in Create event handler of the main Activity.
Now let us study each step in detail. The first step doesn’t demand any explanations, that is why let us go to the second one.
Continue reading →