Skip to content

Commit

Permalink
feature : 패키지 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
ldh019 committed Nov 9, 2022
1 parent 9418cdd commit d4382b8
Show file tree
Hide file tree
Showing 16 changed files with 49 additions and 10 deletions.
4 changes: 1 addition & 3 deletions app/src/main/java/com/gta/ucmc/UCMCApplication.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@ package com.gta.ucmc

import android.app.Application

class UCMCApplication: Application() {

}
class UCMCApplication : Application()
4 changes: 4 additions & 0 deletions data/src/main/java/com/gta/data/di/FirebaseModule.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.gta.data.di

object FirebaseModule {
}
4 changes: 4 additions & 0 deletions data/src/main/java/com/gta/data/model/EmptyModule.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.gta.data.model

class EmptyModule {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package com.gta.data.repository

import com.gta.domain.repository.EmptyRepository

class EmptyRepositoryImpl: EmptyRepository {
}
4 changes: 4 additions & 0 deletions data/src/main/java/com/gta/data/source/EmptyDataSource.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.gta.data.source

class EmptyDataSource {
}
4 changes: 4 additions & 0 deletions data/src/main/java/com/gta/data/util/EmptyUtil.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.gta.data.util

class EmptyUtil {
}
4 changes: 0 additions & 4 deletions domain/src/main/java/com/gta/domain/MyClass.kt

This file was deleted.

4 changes: 4 additions & 0 deletions domain/src/main/java/com/gta/domain/model/EmptyModel.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.gta.domain.model

class EmptyModel {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.gta.domain.repository

interface EmptyRepository {
}
4 changes: 4 additions & 0 deletions domain/src/main/java/com/gta/domain/usecase/EmptyUseCase.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.gta.domain.usecase

class EmptyUseCase {
}
2 changes: 1 addition & 1 deletion presentation/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".MainActivity"
android:name=".ui.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.gta.presentation.model

class EmptyModel {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package com.gta.presentation.ui

Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package com.gta.presentation
package com.gta.presentation.ui

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import com.gta.presentation.R

class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.gta.presentation.util

class EmptyUtil {
}
2 changes: 1 addition & 1 deletion presentation/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
tools:context=".ui.MainActivity">

</androidx.constraintlayout.widget.ConstraintLayout>

0 comments on commit d4382b8

Please sign in to comment.