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

Commit

Permalink
Merge pull request #678 from TeamBeMe/release/1.1.3
Browse files Browse the repository at this point in the history
Release 1.1.3 version
  • Loading branch information
l2hyunwoo authored May 29, 2021
2 parents 6d99255 + 4ac3701 commit 9ccc685
Show file tree
Hide file tree
Showing 28 changed files with 921 additions and 693 deletions.
9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Related Issues


## What Did You Do?
- [x]


## Reference
- [x]
15 changes: 14 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,26 @@ jobs:

- name: Change gradlew permissions
run: chmod +x ./gradlew

- name: Check Lint
run: ./gradlew ktlintCheck

- name: Build with Gradle
run: ./gradlew assembleDebug

- name: Upload APK
if: ${{ success() }}
uses: actions/upload-artifact@v2
with:
name: apk
path: app/build/outputs/apk/debug/

- name: Build App Bundle with Gradle
run: ./gradlew bundleRelease

- name: Upload Bundle
if: ${{ success() }}
uses: actions/upload-artifact@v2
with:
name: aab
path: app/build/outputs/bundle/release/
16 changes: 0 additions & 16 deletions .idea/codeStyles/Project.xml

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

10 changes: 10 additions & 0 deletions .idea/runConfigurations.xml

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

150 changes: 150 additions & 0 deletions .idea/sonarIssues.xml

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

30 changes: 15 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId "com.teambeme.beme"
minSdkVersion 26
targetSdkVersion 30
versionCode 9
versionName "1.1.2"
versionCode 10
versionName "1.1.3"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -44,7 +44,7 @@ dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.4.32'
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.3.1"
implementation 'androidx.core:core-ktx:1.3.2'
implementation "androidx.fragment:fragment-ktx:1.3.2"
implementation "androidx.fragment:fragment-ktx:1.3.3"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
Expand All @@ -61,7 +61,7 @@ dependencies {

// Glide
implementation 'com.github.bumptech.glide:glide:4.12.0'
kapt 'com.github.bumptech.glide:compiler:4.11.0'
kapt 'com.github.bumptech.glide:compiler:4.12.0'

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

// Room
implementation "androidx.room:room-runtime:2.2.6"
kapt "androidx.room:room-compiler:2.2.6"
implementation "androidx.room:room-ktx:2.2.6"
testImplementation "androidx.room:room-testing:2.2.6"
implementation "androidx.room:room-runtime:2.3.0"
kapt "androidx.room:room-compiler:2.3.0"
implementation "androidx.room:room-ktx:2.3.0"
testImplementation "androidx.room:room-testing:2.3.0"

// Lottie
implementation 'com.airbnb.android:lottie:3.6.0'
Expand All @@ -84,7 +84,7 @@ dependencies {
// FireBase
implementation platform('com.google.firebase:firebase-bom:26.2.0')
implementation 'com.google.firebase:firebase-analytics-ktx'
implementation 'com.google.firebase:firebase-messaging:21.0.1'
implementation 'com.google.firebase:firebase-messaging:21.1.0'

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

// AndroidX Navigation Component
implementation "androidx.navigation:navigation-fragment-ktx:2.3.4"
implementation "androidx.navigation:navigation-ui-ktx:2.3.4"
implementation "androidx.navigation:navigation-fragment-ktx:2.3.5"
implementation "androidx.navigation:navigation-ui-ktx:2.3.5"

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

// AndroidX Security: EncryptedSharedPreference
implementation "androidx.security:security-crypto:1.0.0-rc03"
implementation "androidx.security:security-crypto:1.0.0"

// PullRefreshLayout
implementation 'com.baoyz.pullrefreshlayout:library:1.2.0'

// Android Dagger-Hilt
implementation "com.google.dagger:hilt-android:2.33-beta"
kapt "com.google.dagger:hilt-android-compiler:2.33-beta"
implementation "com.google.dagger:hilt-android:2.35"
kapt "com.google.dagger:hilt-android-compiler:2.35"

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

// Kotlin Coroutines for Android
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3'
}
Loading

0 comments on commit 9ccc685

Please sign in to comment.