From 9bbcd345ed798c38140b5f50165dedd7e76f1b62 Mon Sep 17 00:00:00 2001 From: Henning Hall Date: Fri, 20 Aug 2021 10:46:17 +0200 Subject: [PATCH] chore: migrate to jitpack for android dependencies (#363) * migrate to jitpack * update time4j and commons dependencies --- android/build.gradle | 6 +++--- examples/detox/android/build.gradle | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index da57e86..4e58851 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -25,7 +25,7 @@ android { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'com.facebook.react:react-native:+' - implementation 'com.henninghall.android:NumberPickerView:1.1.5' - implementation 'org.apache.commons:commons-lang3:3.7' - implementation group: 'net.time4j', name: 'time4j-android', version: '4.2-2018i' + implementation 'com.github.henninghall:numberpickerview:v1.1.5' + implementation 'org.apache.commons:commons-lang3:3.8' + implementation group: 'net.time4j', name: 'time4j-android', version: '4.8-2021a' } diff --git a/examples/detox/android/build.gradle b/examples/detox/android/build.gradle index bc67363..dfd3eba 100644 --- a/examples/detox/android/build.gradle +++ b/examples/detox/android/build.gradle @@ -19,6 +19,7 @@ allprojects { repositories { mavenLocal() jcenter() + maven { url 'https://www.jitpack.io' } google() maven { url "$rootDir/../node_modules/react-native/android"