From 570cb23643a49509628b662dfc52716bddd49baf Mon Sep 17 00:00:00 2001 From: Idan Atsmon Date: Sun, 4 Apr 2021 16:19:41 +0300 Subject: [PATCH] updated README & CHANGELOG --- CHANGELOG.md | 5 +++++ README.md | 12 +++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8704e5..dff0de6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog ========= +Version 2.1.0 +------------- +* Updated: internal diffing mechanism to fix the famous inconsistency crash +* Updated: removed deprecated bitray publish and moved to jitpack + Version 2.0.2 ------------- * Added: new selection trigger - Manual diff --git a/README.md b/README.md index deda8fc..00a1af7 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,19 @@ Check the example below or sample project for reference for Kotlin & Java use. # Include in your project +Root build.gradle: +```groovy +allprojects { + repositories { + jcenter() + maven { url "https://jitpack.io" } + } +} +``` +App build.gradle: ```groovy dependencies { - implementation "com.ironsource.aura.oneadapter:oneadapter:${LATEST_VERSION}" + implementation "com.github.idanatz:OneAdapter:${LATEST_VERSION}" } ```