From 8c519abc7ef34cbc69a7d21a41c58dfd8922428c Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Mon, 23 Sep 2019 08:12:40 -0700 Subject: [PATCH] Upgrade to fbjni 0.2.0 (#557) Summary: This is now published to Maven Central and doesn't require a separate repository. Pull Request resolved: https://github.com/facebook/flipper/pull/557 Test Plan: CI Reviewed By: danielbuechele Differential Revision: D17526448 Pulled By: passy fbshipit-source-id: 169b5bc5f6568d40697e5e48a9873f8a64bd5e00 --- android/build.gradle | 6 +++--- build.gradle | 5 ----- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 27e8d529b..67b841d41 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -57,9 +57,9 @@ android { dependencies { compileOnly deps.proguardAnnotations - implementation 'com.facebook.fbjni:fbjni:0.0.1' - extractHeaders 'com.facebook.fbjni:fbjni:0.0.1:headers' - extractJNI 'com.facebook.fbjni:fbjni:0.0.1' + implementation 'com.facebook.fbjni:fbjni:0.0.2' + extractHeaders 'com.facebook.fbjni:fbjni:0.0.2:headers' + extractJNI 'com.facebook.fbjni:fbjni:0.0.2' implementation deps.soloader implementation deps.jsr305 implementation deps.supportAppCompat diff --git a/build.gradle b/build.gradle index 2fb4660e6..70e715342 100644 --- a/build.gradle +++ b/build.gradle @@ -31,11 +31,6 @@ subprojects { mavenCentral() jcenter() - maven { - // TODO: Remove once this is on official JCenter. - url 'https://dl.bintray.com/facebook/maven/' - } - if (isSnapshot()) { maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } }