Skip to content

Commit

Permalink
chore: Updated used libraries versions for the project.
Browse files Browse the repository at this point in the history
  • Loading branch information
baruckis committed Jul 12, 2019
1 parent 7ca6abf commit 9509f7b
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 57 deletions.
29 changes: 0 additions & 29 deletions .idea/codeStyles/Project.xml

This file was deleted.

4 changes: 4 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ dependencies {
// support for both touch and mouse driven selection. Developers retain control over the
// visual representation, and the policies controlling selection behavior (like which items
// are eligible for selection, and how many items can be selected.)
implementation "androidx.recyclerview:recyclerview-selection:$versions.recyclerview"
implementation "androidx.recyclerview:recyclerview-selection:$versions.recyclerview_selection"

/* Constraint Layout Library */

Expand Down Expand Up @@ -202,7 +202,7 @@ dependencies {

// Helps apps to display open source software licenses and notices. When the application builds,
// the Gradle plugin will process the licenses and add them to the app resources.
implementation "com.google.android.gms:play-services-oss-licenses:$versions.licenses"
implementation "com.google.android.gms:play-services-oss-licenses:$versions.oss_licenses"

/* Testing */

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ sealed class ApiResponse<CoinMarketCapType> {

var errorMsg: String? = null

if (response.errorBody()?.contentType()?.subtype().equals("json")) {
if (response.errorBody()?.contentType()?.subtype.equals("json")) {

errorMsg = try {

Expand Down
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ buildscript {
dependencies {
classpath "com.android.tools.build:gradle:$versions.gradle"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"

classpath 'com.google.android.gms:oss-licenses-plugin:0.9.4'
classpath "com.google.android.gms:oss-licenses-plugin:$versions.licenses"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# limitations under the License.
#

#Tue Jan 15 08:56:59 EET 2019
#Sat Apr 20 01:09:17 EEST 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
44 changes: 23 additions & 21 deletions versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,32 +22,34 @@ versions.min_sdk = 21
versions.target_sdk = 28

// App dependencies
versions.ads = "17.2.0"
versions.app_compat = "1.1.0-alpha04"
versions.arch_core = "2.0.1"
versions.ads = "18.0.0"
versions.app_compat = "1.1.0-rc01"
versions.arch_core = '2.1.0-rc01'
versions.cardview = "1.0.0"
versions.constraint_layout = "2.0.0-alpha3"
versions.constraint_layout = "2.0.0-beta2"
versions.coroutines = "1.0.1"
versions.dagger = "2.21"
versions.dagger = "2.23.2"
versions.design = "1.0.0"
versions.espresso = "3.1.0-alpha4"
versions.espresso = "3.3.0-alpha01"
versions.flip_view = "1.2.0"
versions.gradle = '3.3.2'
versions.gradle = '3.4.2'
versions.glide = '4.9.0'
versions.junit = "4.12"
versions.kotlin = "1.3.21"
versions.ktx = "1.0.1"
versions.licenses = "16.0.2"
versions.lifecycle = "2.0.0"
versions.mockito = "1.10.19"
versions.junit = "4.13-beta-3"
versions.kotlin = "1.3.41"
versions.ktx = "1.2.0-alpha02"
versions.licenses = "0.9.5"
versions.lifecycle = "2.2.0-alpha02"
versions.mockito = "2.0.2-beta"
versions.navigation = "1.0.0"
versions.okhttp = "3.13.1"
versions.preference = "1.1.0-alpha04"
versions.recyclerview = "1.0.0"
versions.retrofit = "2.5.0"
versions.room = "2.0.0"
versions.rules = "1.1.0-alpha4"
versions.runner = "1.1.0-alpha4"
versions.stetho = "1.5.0"
versions.okhttp = "4.0.1"
versions.oss_licenses = "17.0.0"
versions.preference = "1.1.0-rc01"
versions.recyclerview = "1.1.0-beta01"
versions.recyclerview_selection = "1.1.0-alpha06"
versions.retrofit = "2.6.0"
versions.room = "2.1.0"
versions.rules = "1.3.0-alpha01"
versions.runner = "1.3.0-alpha01"
versions.stetho = "1.5.1"

ext.versions = versions

0 comments on commit 9509f7b

Please sign in to comment.