Skip to content

Commit

Permalink
[Design/#32] DeleteAccountActivity 클래스 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
ss99x2002 committed Jul 10, 2023
1 parent 3d54582 commit 231b85e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@
android:name=".presentation.setting.ManageAccountActivity"
android:exported="false"
android:screenOrientation="portrait" />
<activity
android:name=".presentation.setting.DeleteAccountActivity"
android:exported="false"
android:screenOrientation="portrait" />
</application>

</manifest>
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
package com.sopt.umbba_android.presentation.setting

class DeleteAccountActivity {
import com.sopt.umbba_android.R
import com.sopt.umbba_android.databinding.ActivityDeleteAccountBinding
import com.sopt.umbba_android.util.binding.BindingActivity

class DeleteAccountActivity : BindingActivity<ActivityDeleteAccountBinding>(R.layout.activity_delete_account){

}

0 comments on commit 231b85e

Please sign in to comment.