Skip to content

Commit

Permalink
chore: 패키지 구조 설정 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
krrong authored and zillionme committed Oct 3, 2023
1 parent 08663d2 commit c22349f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions android/.idea/gradle.xml

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

Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package com.now.naaga
package com.now.naaga.presentation

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import com.now.naaga.R

class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
}
}
2 changes: 1 addition & 1 deletion android/app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
tools:context=".presentation.MainActivity">

<TextView
android:layout_width="wrap_content"
Expand Down

0 comments on commit c22349f

Please sign in to comment.