Skip to content

Commit

Permalink
fix : 피드 목록이 나왔다가 바로 사라지는 버그 수정 (#838)
Browse files Browse the repository at this point in the history
* fix : 피드 목록이 나왔다가 바로 사라지는 버그 수정

- viewPager의 height 를 match_parent로 수정

* release : versioncode =58, versionName = 2.1.5 로 수정
  • Loading branch information
chws0508 authored Nov 13, 2023
1 parent e8a7a1a commit 7ddcbc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions android/2023-emmsale/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android {
applicationId = "com.emmsale"
minSdk = 28
targetSdk = 33
versionCode = 57
versionName = "2.1.4"
versionCode = 58
versionName = "2.1.5"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/vp_eventdetail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

<androidx.constraintlayout.widget.ConstraintLayout
Expand Down

0 comments on commit 7ddcbc1

Please sign in to comment.