Skip to content
This repository was archived by the owner on Aug 22, 2024. It is now read-only.

Commit 361cf3d

Browse files
authored
Merge pull request #71 from amardeshbd/update-version-for-release
[UPDATE] App version for new release
2 parents b734f44 + 885a836 commit 361cf3d

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

app/build.gradle

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,17 @@
11
apply plugin: 'com.android.application'
2-
32
apply plugin: 'io.fabric'
4-
53
apply plugin: 'kotlin-android'
6-
74
apply plugin: 'kotlin-android-extensions'
8-
9-
// https://kotlinlang.org/docs/reference/kapt.html
10-
apply plugin: 'kotlin-kapt'
5+
apply plugin: 'kotlin-kapt' // https://kotlinlang.org/docs/reference/kapt.html
116

127
android {
138
compileSdkVersion rootProject.ext.androidCompileSdkVersion
149
defaultConfig {
1510
applicationId "com.hossainkhan.android.constraintlayout"
1611
minSdkVersion rootProject.ext.androidMinSdkVersion
1712
targetSdkVersion rootProject.ext.androidTargetSdkVersion
18-
versionCode 4
19-
versionName "1.2-constraint-layout-demo"
13+
versionCode 5
14+
versionName "1.3-constraint-layout-demo"
2015
versionNameSuffix "-${gitSha()}"
2116

2217
buildConfigField "String", "GIT_SHA", "\"${gitSha()}\""
@@ -55,6 +50,7 @@ dependencies {
5550

5651
// ViewModel and LiveData
5752
// https://developer.android.com/topic/libraries/architecture/adding-components
53+
// https://developer.android.com/jetpack/androidx/releases/lifecycle
5854
implementation "androidx.lifecycle:lifecycle-extensions:$rootProject.archComponentVersion"
5955

6056
// https://developer.chrome.com/multidevice/android/customtabs
@@ -63,7 +59,6 @@ dependencies {
6359
// ========================================================
6460
// 3rd party libraries
6561
// ========================================================
66-
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
6762
debugImplementation "com.squareup.leakcanary:leakcanary-android:$rootProject.leakcanaryLibraryVersion"
6863
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$rootProject.leakcanaryLibraryVersion"
6964

@@ -101,7 +96,7 @@ dependencies {
10196
androidTestImplementation("androidx.test.espresso:espresso-core:$rootProject.espressoVersion", {
10297
exclude group: 'com.android.support', module: 'support-annotations'
10398
})
104-
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
99+
androidTestImplementation 'androidx.test:runner:1.1.1'
105100
testImplementation "androidx.arch.core:core-testing:$rootProject.archComponentVersion"
106101
}
107102

build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,12 @@ ext {
8484
// Google Products & Support library dependencies
8585
// --------------------------------------------------
8686
// https://developer.android.com/topic/libraries/support-library/revisions.html
87-
supportLibraryVersion = '1.0.0-beta01'
87+
supportLibraryVersion = '1.0.0'
8888
// https://developer.android.com/reference/android/support/constraint/ConstraintLayout
89-
constraintLayoutVersion = '1.1.2'
89+
constraintLayoutVersion = '1.1.3'
9090
// https://developer.android.com/topic/libraries/architecture/adding-components
91-
archComponentVersion = '2.0.0-beta01'
91+
// https://developer.android.com/jetpack/androidx/releases/lifecycle
92+
archComponentVersion = '2.0.0'
9293
// https://firebase.google.com/docs/android/setup
9394
firebaseVersion = '15.0.2'
9495
// https://firebase.google.com/docs/crashlytics/get-started
@@ -104,8 +105,8 @@ ext {
104105
// 3rd party library dependencies
105106
// --------------------------------------------------
106107
daggerVersion = '2.15' // https://github.com/google/dagger
107-
timberLibraryVersion = '4.7.0' // https://github.com/JakeWharton/timber
108-
leakcanaryLibraryVersion = '1.5.4' // https://github.com/square/leakcanary/releases
108+
timberLibraryVersion = '4.7.1' // https://github.com/JakeWharton/timber
109+
leakcanaryLibraryVersion = '1.6.3' // https://github.com/square/leakcanary/releases
109110
flashBarVersion = '1.0.2' // https://github.com/aritraroy/Flashbar/releases
110111
}
111112

0 commit comments

Comments
 (0)