Skip to content

Commit

Permalink
refactor: import문 사전순 정렬
Browse files Browse the repository at this point in the history
  • Loading branch information
nueijeel committed Jan 8, 2024
1 parent 34a49e6 commit 8094c6f
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.project.meongcare.info.model.data.remote

import com.project.meongcare.info.model.entities.GetDogInfoResponse
import com.project.meongcare.home.model.entities.GetDogListResponse
import com.project.meongcare.home.model.entities.GetUserProfileResponse
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import okhttp3.MultipartBody
import okhttp3.RequestBody
import retrofit2.Response
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.project.meongcare.info.model.data.repository

import com.project.meongcare.info.model.entities.GetDogInfoResponse
import com.project.meongcare.home.model.entities.DogProfile
import com.project.meongcare.home.model.entities.GetUserProfileResponse
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import okhttp3.MultipartBody
import okhttp3.RequestBody

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package com.project.meongcare.info.model.data.repository

import android.util.Log
import com.project.meongcare.info.model.data.remote.ProfileRetrofitClient
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import com.project.meongcare.home.model.entities.DogProfile
import com.project.meongcare.home.model.entities.GetUserProfileResponse
import com.project.meongcare.info.model.data.remote.ProfileRetrofitClient
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import okhttp3.MultipartBody
import okhttp3.RequestBody
import javax.inject.Inject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import androidx.navigation.fragment.findNavController
import com.bumptech.glide.Glide
import com.google.gson.Gson
import com.project.meongcare.CalendarBottomSheetFragment
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import com.project.meongcare.info.viewmodel.ProfileViewModel
import com.project.meongcare.MainActivity
import com.project.meongcare.R
import com.project.meongcare.databinding.FragmentPetEditBinding
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import com.project.meongcare.info.viewmodel.ProfileViewModel
import com.project.meongcare.onboarding.model.data.local.DateSubmitListener
import com.project.meongcare.onboarding.model.data.local.PhotoMenuListener
import com.project.meongcare.onboarding.model.entities.Dog
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import androidx.fragment.app.Fragment
import androidx.fragment.app.viewModels
import androidx.navigation.fragment.findNavController
import com.bumptech.glide.Glide
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import com.project.meongcare.info.viewmodel.ProfileViewModel
import com.project.meongcare.R
import com.project.meongcare.databinding.FragmentPetAddEditBinding
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import com.project.meongcare.info.viewmodel.ProfileViewModel
import com.project.meongcare.onboarding.view.Gender
import com.project.meongcare.onboarding.view.dateFormat
import dagger.hilt.android.AndroidEntryPoint
Expand All @@ -35,7 +35,7 @@ class PetInfoFragment : Fragment() {
}
}

val accessToken = "Bearer eyJhbGciOiJIUzI1NiJ9.eyJpZCI6MywiZXhwIjoxNzA0NTI5MzQxfQ.OyMJ6nYc5ts7pIik__904ClK01HFUeYxjCbITeZMLr0"
val accessToken = ""
val dogId = arguments?.getLong("dogId")!!
petInfoViewModel.getDogInfo(dogId, accessToken)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import com.google.android.gms.auth.api.signin.GoogleSignIn
import com.google.android.gms.auth.api.signin.GoogleSignInOptions
import com.kakao.sdk.user.UserApiClient
import com.navercorp.nid.NaverIdLoginSDK
import com.project.meongcare.info.viewmodel.ProfileViewModel
import com.project.meongcare.MainActivity
import com.project.meongcare.R
import com.project.meongcare.databinding.FragmentProfileBinding
import com.project.meongcare.info.viewmodel.ProfileViewModel
import com.project.meongcare.login.model.data.local.UserPreferences
import com.project.meongcare.onboarding.model.data.local.PhotoMenuListener
import dagger.hilt.android.AndroidEntryPoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import androidx.fragment.app.Fragment
import androidx.fragment.app.viewModels
import androidx.navigation.fragment.findNavController
import com.google.android.material.snackbar.Snackbar
import com.project.meongcare.info.viewmodel.ProfileViewModel
import com.project.meongcare.R
import com.project.meongcare.databinding.FragmentSettingBinding
import com.project.meongcare.info.viewmodel.ProfileViewModel
import com.project.meongcare.login.model.data.local.UserPreferences
import dagger.hilt.android.AndroidEntryPoint
import javax.inject.Inject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import android.net.Uri
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import com.project.meongcare.info.model.data.repository.ProfileRepository
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import com.project.meongcare.home.model.entities.DogProfile
import com.project.meongcare.home.model.entities.GetUserProfileResponse
import com.project.meongcare.info.model.data.repository.ProfileRepository
import com.project.meongcare.info.model.entities.GetDogInfoResponse
import dagger.hilt.android.lifecycle.HiltViewModel
import kotlinx.coroutines.launch
import okhttp3.MultipartBody
Expand Down

0 comments on commit 8094c6f

Please sign in to comment.