Skip to content

Commit 81e94b1

Browse files
committed
[구조변경] 앱 명과 앱 패키지 명 변경
1 parent 472b55c commit 81e94b1

File tree

62 files changed

+164
-164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+164
-164
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ plugins {
55
}
66

77
android {
8-
namespace 'com.gun.testcodeexample'
8+
namespace 'com.gun.githubapi'
99
compileSdk 33
1010

1111
defaultConfig {
12-
applicationId "com.gun.testcodeexample"
12+
applicationId "com.gun.githubapi"
1313
minSdk 23
1414
targetSdk 33
1515
versionCode 1

app/src/androidTest/java/com/gun/testcodeexample/ExampleInstrumentedTest.kt renamed to app/src/androidTest/java/com/gun/githubapi/ExampleInstrumentedTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.gun.testcodeexample
1+
package com.gun.githubapi
22

33
import androidx.test.platform.app.InstrumentationRegistry
44
import androidx.test.ext.junit.runners.AndroidJUnit4
@@ -19,6 +19,6 @@ class ExampleInstrumentedTest {
1919
fun useAppContext() {
2020
// Context of the app under test.
2121
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
22-
assertEquals("com.gun.testcodeexample", appContext.packageName)
22+
assertEquals("com.gun.githubapi", appContext.packageName)
2323
}
2424
}

app/src/main/java/com/gun/testcodeexample/api/okhttp/OkHttpProvider.kt renamed to app/src/main/java/com/gun/githubapi/api/okhttp/OkHttpProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.gun.testcodeexample.api.okhttp
1+
package com.gun.githubapi.api.okhttp
22

33
import okhttp3.OkHttpClient
44
import okhttp3.logging.HttpLoggingInterceptor

app/src/main/java/com/gun/testcodeexample/api/okhttp/PrettyLogger.java renamed to app/src/main/java/com/gun/githubapi/api/okhttp/PrettyLogger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.gun.testcodeexample.api.okhttp;
1+
package com.gun.githubapi.api.okhttp;
22

33
import android.util.Log;
44

app/src/main/java/com/gun/testcodeexample/api/okhttp/RequestInterceptor.kt renamed to app/src/main/java/com/gun/githubapi/api/okhttp/RequestInterceptor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.gun.testcodeexample.api.okhttp
1+
package com.gun.githubapi.api.okhttp
22

33
import okhttp3.Interceptor
44
import okhttp3.Response

app/src/main/java/com/gun/testcodeexample/api/retrofit/KeyboardUtils.kt renamed to app/src/main/java/com/gun/githubapi/api/retrofit/KeyboardUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.gun.testcodeexample.api.retrofit
1+
package com.gun.githubapi.api.retrofit
22

33
import android.graphics.Rect
44
import android.view.View

app/src/main/java/com/gun/testcodeexample/api/retrofit/RetrofitProvider.kt renamed to app/src/main/java/com/gun/githubapi/api/retrofit/RetrofitProvider.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package com.gun.testcodeexample.api.retrofit
1+
package com.gun.githubapi.api.retrofit
22

3-
import com.gun.testcodeexample.api.okhttp.OkHttpProvider
4-
import com.gun.testcodeexample.data.service.RepositoryService
5-
import com.gun.testcodeexample.data.service.UserService
3+
import com.gun.githubapi.api.okhttp.OkHttpProvider
4+
import com.gun.githubapi.data.service.RepositoryService
5+
import com.gun.githubapi.data.service.UserService
66
import retrofit2.Retrofit
77
import retrofit2.converter.gson.GsonConverterFactory
88

app/src/main/java/com/gun/testcodeexample/api/retrofit/SizeUtils.kt renamed to app/src/main/java/com/gun/githubapi/api/retrofit/SizeUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.gun.testcodeexample.api.retrofit
1+
package com.gun.githubapi.api.retrofit
22

33
import android.content.Context
44
import android.util.TypedValue

app/src/main/java/com/gun/testcodeexample/common/BaseActivity.kt renamed to app/src/main/java/com/gun/githubapi/common/BaseActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package com.gun.testcodeexample.common
1+
package com.gun.githubapi.common
22

33
import android.view.MotionEvent
44
import android.view.WindowManager
55
import android.view.inputmethod.InputMethodManager
66
import androidx.appcompat.app.AppCompatActivity
7-
import com.gun.testcodeexample.api.retrofit.KeyboardUtils
7+
import com.gun.githubapi.api.retrofit.KeyboardUtils
88

99
abstract class BaseActivity : AppCompatActivity() {
1010
private var loadingBar: CustomLoadingBar? = null

app/src/main/java/com/gun/testcodeexample/common/BaseViewModel.kt renamed to app/src/main/java/com/gun/githubapi/common/BaseViewModel.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package com.gun.testcodeexample.common
1+
package com.gun.githubapi.common
22

33
import android.util.Log
44
import androidx.lifecycle.ViewModel
55
import androidx.lifecycle.viewModelScope
6-
import com.gun.testcodeexample.common.Constants.TAG
7-
import com.gun.testcodeexample.common.state.ErrorState
8-
import com.gun.testcodeexample.common.state.LoadingState
6+
import com.gun.githubapi.common.Constants.TAG
7+
import com.gun.githubapi.common.state.ErrorState
8+
import com.gun.githubapi.common.state.LoadingState
99
import kotlinx.coroutines.CoroutineExceptionHandler
1010
import kotlinx.coroutines.flow.MutableSharedFlow
1111
import kotlinx.coroutines.flow.MutableStateFlow

0 commit comments

Comments
 (0)