From db5e7056e6ebf478fae6ce04a1818eaebd137c85 Mon Sep 17 00:00:00 2001 From: oupson <31827294+oupson@users.noreply.github.com> Date: Wed, 24 Oct 2018 13:28:13 +0200 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 851c2fd..c585850 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,21 @@ apng.addFrames(BitmapFactory.decodeByteArray(file2.readBytes(), 0, file2.readByt val apngByteArray = apng.generateAPNGByteArray() File("output file path").writeBytes(apngByteArray) ``` + +How to install : +Via jitpack +```gradle +repositories { + maven { url "https://jitpack.io" } + } + + dependencies { + implementation 'com.github.oupson:Kapng-Android:1.0.0' + } + ``` + + Or put the aar file in /libs/ and verify that you have : + ```gradle + dependencies { + implementation fileTree(include: ['*.aar'], dir: 'libs') + }