Skip to content

Commit

Permalink
[FEAT/#5] 로그인 화면 버튼이 키보드를 따라 올라오도록 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
SYAAINN committed Aug 12, 2024
1 parent 64c9ba0 commit f175e11
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,21 @@
tools:targetApi="31">
<activity
android:name=".presentation.ui.auth.signin.SignInActivity"
android:exported="true">
android:exported="true"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".presentation.ui.auth.signup.SignUpActivity"
<activity
android:name=".presentation.ui.auth.signup.SignUpActivity"
android:exported="false">

</activity>
<activity android:name=".presentation.ui.MainActivity"
<activity
android:name=".presentation.ui.MainActivity"
android:exported="false">

</activity>
Expand Down

0 comments on commit f175e11

Please sign in to comment.