Skip to content

Android library to show chagelog of your app (based on Inscription of MartinvanZ)

Notifications You must be signed in to change notification settings

Richi2293/FalconChangeLog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

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.

About

Android library to show chagelog of your app (based on Inscription of MartinvanZ)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages