Skip to content

Commit

Permalink
Lib version update
Browse files Browse the repository at this point in the history
- Update all libs version.
- Remove legacy support v4.
  • Loading branch information
sagar-viradiya committed Oct 5, 2020
1 parent 8360ab2 commit f4d6158
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 35 deletions.
24 changes: 12 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

buildscript {
ext {
kotlin_version = "1.3.50"
gradle_version = "3.5.0"
kotlin_version = "1.4.10"
gradle_version = "4.0.1"
bintray_version = '1.8.0'
maven_version = '2.1'
ktlint_plugin_version = '8.0.0'
Expand All @@ -29,20 +29,20 @@ buildscript {
libGithubRepo = 'sagar-viradiya/eazypermissions'

minSdkVersion = 20
targetSdkVersion = 29
compileSdkVersion = 29
targetSdkVersion = 30
compileSdkVersion = 30

common_version_code = 4
common_version_name = "2.0.2"
common_version_code = 5
common_version_name = "2.0.3"

coroutinespermission_version_code = 4
coroutinespermission_version_name = "2.0.2"
coroutinespermission_version_code = 5
coroutinespermission_version_name = "2.0.3"

livedatapermission_version_code = 3
livedatapermission_version_name = "2.0.1"
livedatapermission_version_code = 5
livedatapermission_version_name = "2.0.3"

dslpermission_version_code = 3
dslpermission_version_name = "2.0.1"
dslpermission_version_code = 5
dslpermission_version_name = "2.0.3"

}

Expand Down
3 changes: 1 addition & 2 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

api 'androidx.appcompat:appcompat:1.1.0'
api 'androidx.legacy:legacy-support-v4:1.0.0'
api 'androidx.appcompat:appcompat:1.2.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
Expand Down
4 changes: 2 additions & 2 deletions coroutinespermission/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
api project(':common')
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.8"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test:runner:1.2.0'
Expand Down
20 changes: 2 additions & 18 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,22 +1,6 @@
#
# Copyright 2019 Sagar Viradiya
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

#Fri Apr 19 15:29:34 IST 2019
#Sat Aug 01 12:02:22 IST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip
2 changes: 1 addition & 1 deletion livedatapermission/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
api project(':common')
implementation "androidx.lifecycle:lifecycle-livedata:2.1.0"
implementation "androidx.lifecycle:lifecycle-livedata:2.2.0"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test:runner:1.2.0'
Expand Down

0 comments on commit f4d6158

Please sign in to comment.