Skip to content

Commit

Permalink
Updated library versions
Browse files Browse the repository at this point in the history
  • Loading branch information
malikmotani committed Oct 17, 2020
1 parent 71ee956 commit b4544cd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Developers often come across a requirement of adding precise location. So, a pla
```groovy
dependencies {
...
implementation 'com.github.Mindinventory:VanillaPlacePicker:0.1.1'
implementation 'com.github.Mindinventory:VanillaPlacePicker:0.1.2'
}
```
Expand Down
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ android {
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
multiDexEnabled true
}
buildTypes {
release {
Expand All @@ -29,8 +30,9 @@ dependencies {
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.cardview:cardview:$cardview_version"

testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13'
implementation project(path: ':vanillaplacepicker')
implementation 'androidx.multidex:multidex:2.0.1'
}

apply plugin: 'com.google.gms.google-services'
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

buildscript {
ext.build_gradle_version = '3.5.0'
ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.4.10'
ext.google_services_version = '4.2.0'
ext.appcompat_version = '1.1.0-alpha02'
ext.ktx_version = '1.1.0-alpha04'
Expand Down
22 changes: 11 additions & 11 deletions vanillaplacepicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,25 +39,25 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50'
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.core:core-ktx:1.2.0-alpha03'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
implementation "androidx.recyclerview:recyclerview:1.0.0"
testImplementation 'junit:junit:4.12'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation "androidx.recyclerview:recyclerview:1.1.0"
testImplementation 'junit:junit:4.13'

// Location
api 'com.google.android.gms:play-services-location:17.0.0'
api 'com.google.android.gms:play-services-location:17.1.0'
api 'com.google.android.gms:play-services-maps:17.0.0'

// this library are used for Retrofit API calling feature
implementation 'io.reactivex.rxjava2:rxjava:2.2.4'
implementation 'io.reactivex.rxjava2:rxjava:2.2.10'

// Google material
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.google.android.material:material:1.2.1'

implementation "com.google.android.libraries.places:places:2.0.0"
implementation "com.google.android.libraries.places:places:2.4.0"
}
repositories {
mavenCentral()
Expand Down

0 comments on commit b4544cd

Please sign in to comment.