Skip to content
This repository was archived by the owner on Nov 3, 2022. It is now read-only.

Commit 9ccc685

Browse files
authored
Merge pull request #678 from TeamBeMe/release/1.1.3
Release 1.1.3 version
2 parents 6d99255 + 4ac3701 commit 9ccc685

28 files changed

Lines changed: 921 additions & 693 deletions

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Related Issues
2+
3+
4+
## What Did You Do?
5+
- [x]
6+
7+
8+
## Reference
9+
- [x]

.github/workflows/build.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,26 @@ jobs:
3636

3737
- name: Change gradlew permissions
3838
run: chmod +x ./gradlew
39+
40+
- name: Check Lint
41+
run: ./gradlew ktlintCheck
3942

4043
- name: Build with Gradle
4144
run: ./gradlew assembleDebug
42-
45+
4346
- name: Upload APK
4447
if: ${{ success() }}
4548
uses: actions/upload-artifact@v2
4649
with:
4750
name: apk
4851
path: app/build/outputs/apk/debug/
52+
53+
- name: Build App Bundle with Gradle
54+
run: ./gradlew bundleRelease
55+
56+
- name: Upload Bundle
57+
if: ${{ success() }}
58+
uses: actions/upload-artifact@v2
59+
with:
60+
name: aab
61+
path: app/build/outputs/bundle/release/

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/sonarIssues.xml

Lines changed: 150 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
applicationId "com.teambeme.beme"
1616
minSdkVersion 26
1717
targetSdkVersion 30
18-
versionCode 9
19-
versionName "1.1.2"
18+
versionCode 10
19+
versionName "1.1.3"
2020

2121
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2222
}
@@ -44,7 +44,7 @@ dependencies {
4444
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.4.32'
4545
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.3.1"
4646
implementation 'androidx.core:core-ktx:1.3.2'
47-
implementation "androidx.fragment:fragment-ktx:1.3.2"
47+
implementation "androidx.fragment:fragment-ktx:1.3.3"
4848
implementation 'androidx.appcompat:appcompat:1.2.0'
4949
implementation 'com.google.android.material:material:1.3.0'
5050
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
@@ -61,7 +61,7 @@ dependencies {
6161

6262
// Glide
6363
implementation 'com.github.bumptech.glide:glide:4.12.0'
64-
kapt 'com.github.bumptech.glide:compiler:4.11.0'
64+
kapt 'com.github.bumptech.glide:compiler:4.12.0'
6565

6666
// Retrofit & Gson
6767
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
@@ -70,10 +70,10 @@ dependencies {
7070
implementation 'com.squareup.okhttp3:okhttp:4.2.2'
7171

7272
// Room
73-
implementation "androidx.room:room-runtime:2.2.6"
74-
kapt "androidx.room:room-compiler:2.2.6"
75-
implementation "androidx.room:room-ktx:2.2.6"
76-
testImplementation "androidx.room:room-testing:2.2.6"
73+
implementation "androidx.room:room-runtime:2.3.0"
74+
kapt "androidx.room:room-compiler:2.3.0"
75+
implementation "androidx.room:room-ktx:2.3.0"
76+
testImplementation "androidx.room:room-testing:2.3.0"
7777

7878
// Lottie
7979
implementation 'com.airbnb.android:lottie:3.6.0'
@@ -84,7 +84,7 @@ dependencies {
8484
// FireBase
8585
implementation platform('com.google.firebase:firebase-bom:26.2.0')
8686
implementation 'com.google.firebase:firebase-analytics-ktx'
87-
implementation 'com.google.firebase:firebase-messaging:21.0.1'
87+
implementation 'com.google.firebase:firebase-messaging:21.1.0'
8888

8989
// Image Crop
9090
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
@@ -93,25 +93,25 @@ dependencies {
9393
implementation 'com.github.didikk:sticky-nestedscrollview:1.0.1'
9494

9595
// AndroidX Navigation Component
96-
implementation "androidx.navigation:navigation-fragment-ktx:2.3.4"
97-
implementation "androidx.navigation:navigation-ui-ktx:2.3.4"
96+
implementation "androidx.navigation:navigation-fragment-ktx:2.3.5"
97+
implementation "androidx.navigation:navigation-ui-ktx:2.3.5"
9898

9999
// Dot Indicator
100100
implementation 'com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2'
101101

102102
// AndroidX Security: EncryptedSharedPreference
103-
implementation "androidx.security:security-crypto:1.0.0-rc03"
103+
implementation "androidx.security:security-crypto:1.0.0"
104104

105105
// PullRefreshLayout
106106
implementation 'com.baoyz.pullrefreshlayout:library:1.2.0'
107107

108108
// Android Dagger-Hilt
109-
implementation "com.google.dagger:hilt-android:2.33-beta"
110-
kapt "com.google.dagger:hilt-android-compiler:2.33-beta"
109+
implementation "com.google.dagger:hilt-android:2.35"
110+
kapt "com.google.dagger:hilt-android-compiler:2.35"
111111

112112
// Google Play Store API
113113
implementation 'com.google.android.play:core:1.10.0'
114114

115115
// Kotlin Coroutines for Android
116-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1'
116+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3'
117117
}

0 commit comments

Comments
 (0)