Browse Source

chore: migrate to jitpack for android dependencies (#363)

* migrate to jitpack
* update time4j and commons dependencies
master
Henning Hall 4 years ago
committed by GitHub
parent
commit
9bbcd345ed
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions
  1. +3
    -3
      android/build.gradle
  2. +1
    -0
      examples/detox/android/build.gradle

+ 3
- 3
android/build.gradle View File

@ -25,7 +25,7 @@ android {
dependencies { dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs') implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.facebook.react:react-native:+' 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'
} }

+ 1
- 0
examples/detox/android/build.gradle View File

@ -19,6 +19,7 @@ allprojects {
repositories { repositories {
mavenLocal() mavenLocal()
jcenter() jcenter()
maven { url 'https://www.jitpack.io' }
google() google()
maven { maven {
url "$rootDir/../node_modules/react-native/android" url "$rootDir/../node_modules/react-native/android"

Loading…
Cancel
Save