From 1af7fc3af203ebad70a4ad6498bea489474bf671 Mon Sep 17 00:00:00 2001 From: Nishant Date: Tue, 14 Mar 2017 14:52:01 +0530 Subject: [PATCH] moving to jitpack (#2) * moving to jitpack * changing badge --- README.md | 9 ++++----- app/build.gradle | 8 +++----- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index feb7e7b..37a6b0d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ [![Build Status](https://travis-ci.org/Nishant-Pathak/MathView.svg?branch=master)](https://travis-ci.org/Nishant-Pathak/MathView) -[ ![Download](https://api.bintray.com/packages/nishantpathak/public/MathView/images/download.svg?version=0.6) ](https://bintray.com/nishantpathak/public/MathView/0.6/link) +[![](https://jitpack.io/v/Nishant-Pathak/App-Math.svg)](https://jitpack.io/#Nishant-Pathak/App-Math) + # MathView - [x] Support all types of math encoding ( MathML, TeX or AsciiMath etc). @@ -25,14 +26,12 @@ Add below lines to app's build.gradle ```groovy repositories { - maven { - url "http://nishantpathak.bintray.com/public" - } + maven { url 'https://jitpack.io' } } ``` ```groovy dependencies { - compile 'com.nishant:mathview:0.6' + compile 'com.github.Nishant-Pathak:App-Math:v0.6' } ``` diff --git a/app/build.gradle b/app/build.gradle index 147f44f..feb6f08 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,9 +1,7 @@ apply plugin: 'com.android.application' repositories { - maven { - url "http://nishantpathak.bintray.com/public" - } + maven { url 'https://jitpack.io' } } android { @@ -35,7 +33,7 @@ dependencies { }) // compile project(path: ':mathview-release') - compile 'com.nishant:mathview:0.6' - compile 'com.android.support:appcompat-v7:25.1.0' + compile 'com.github.Nishant-Pathak:App-Math:v0.6' + compile 'com.android.support:appcompat-v7:25.2.0' testCompile 'junit:junit:4.12' }