Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.36 KB

README.md

File metadata and controls

56 lines (40 loc) · 1.36 KB

FalconChangeLog

FalconChangeLog is an Android library to manage and show a changelog in your Android app.

"Inscription" was taken as the basis of the project.

This is the link of the repository.

The goal is to improve and add functionality to the project.


Demo app on Google Play:

	https://play.google.com/store/apps/details?id=falconchangelogdemo.riccardo.com.falconchangelogdemo

How to include it in your project(Gradle):

	compile 'com.github.bombe93:falconchangelog:1.0.1'

How to use it:

  • create a file under "rootProject/app/src/main/res/xml/changelog.xml" called "changelog.xml" and formatted like this:
	<?xml version="1.0" encoding="utf-8"?>
	<changelog>
	    <release version="1.0" versioncode="2">
		<change>Small layout change in the view item screen</change>
		<change>Minor tweaks</change>
	    </release>
	</changelog>
  • In the activity where you want to use it make the import:
	import com.github.bombe93.falconchangelog.FalconChangeLog; 
  • Instantiate the class:
	FalconChangeLog changelog;
       changelog = new FalconChangeLog(YourActivity.this);
  • And when you want to make the changelog look just to call the method like this:
   changelog.show();

Contribute

You can contribute without any problems.