Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: 패키지 이름(플레이스토어 배포하려면 기본 패키지 이름 사용불가) + 프로젝트 명 변경 #27

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .idea/.name

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

4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {
}

android {
namespace = "com.example.deckor_teamc_front"
namespace = "com.devkor.kodaero"
compileSdk = 34

defaultConfig {
applicationId = "com.example.deckor_teamc_front"
applicationId = "com.devkor.kodaero"
minSdk = 24
targetSdk = 34
versionCode = 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.os.Parcelable
import kotlinx.parcelize.Parcelize
import retrofit2.Call
import retrofit2.http.GET
import retrofit2.http.Path
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

object BuildingCache {
private val cache = mutableMapOf<Int, BuildingItem>()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.os.Bundle
import android.view.LayoutInflater
Expand All @@ -8,7 +8,6 @@ import android.widget.Button
import android.widget.ImageButton
import android.widget.ImageView
import android.widget.LinearLayout
import android.widget.RelativeLayout
import android.widget.ScrollView
import android.widget.TextView
import androidx.fragment.app.Fragment
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.os.Bundle
import androidx.fragment.app.Fragment
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.os.Bundle
import androidx.fragment.app.Fragment
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

object Constants {
const val KU_PREFIX = "고려대학교 서울캠퍼스"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.content.Context
import android.graphics.Color
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

object DirectionSearchRouteDataHolder {
var splitedRoute: RouteResponse? = null
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.view.LayoutInflater
import android.view.View
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.view.LayoutInflater
import android.view.View
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.os.Bundle
import androidx.fragment.app.Fragment
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.util.Log
import androidx.lifecycle.LiveData
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.os.Bundle
import android.util.Log
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.activity.OnBackPressedCallback
import androidx.core.content.ContextCompat
import androidx.fragment.app.Fragment
import androidx.fragment.app.FragmentManager
import androidx.fragment.app.setFragmentResultListener
import androidx.fragment.app.viewModels
import com.example.deckor_teamc_front.databinding.FragmentGetDirectionsBinding
import com.devkor.kodaero.databinding.FragmentGetDirectionsBinding
import com.naver.maps.geometry.LatLng
import com.naver.maps.geometry.LatLngBounds
import com.naver.maps.map.CameraUpdate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.content.Context
import android.os.Bundle
Expand All @@ -16,7 +16,7 @@ import androidx.fragment.app.setFragmentResult
import androidx.fragment.app.viewModels
import androidx.lifecycle.Observer
import androidx.recyclerview.widget.LinearLayoutManager
import com.example.deckor_teamc_front.databinding.FragmentSearchBuildingBinding
import com.devkor.kodaero.databinding.FragmentSearchBuildingBinding

class GetDirectionsSearchBuildingFragment : Fragment() {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.content.Context
import android.graphics.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.Manifest
import android.content.pm.PackageManager
Expand All @@ -19,7 +19,7 @@ import androidx.fragment.app.FragmentActivity
import androidx.lifecycle.Observer
import androidx.lifecycle.ViewModelProvider
import androidx.recyclerview.widget.RecyclerView
import com.example.deckor_teamc_front.databinding.FragmentHomeBinding
import com.devkor.kodaero.databinding.FragmentHomeBinding
import com.google.android.material.bottomsheet.BottomSheetBehavior
import com.naver.maps.geometry.LatLng
import com.naver.maps.map.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.graphics.Bitmap
import android.graphics.BitmapFactory
Expand All @@ -17,7 +17,7 @@ import android.widget.ImageView
import androidx.coordinatorlayout.widget.CoordinatorLayout
import com.caverock.androidsvg.SVG
import com.caverock.androidsvg.SVGParseException
import com.example.deckor_teamc_front.databinding.InnerMapContainerBinding
import com.devkor.kodaero.databinding.InnerMapContainerBinding
import com.google.android.material.bottomsheet.BottomSheetBehavior
import com.google.gson.Gson
import com.google.gson.reflect.TypeToken
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.content.Context
import android.graphics.Bitmap
Expand All @@ -11,9 +11,8 @@ import android.view.ViewGroup
import android.widget.FrameLayout
import android.widget.ImageView
import android.widget.TextView
import android.widget.Toast
import androidx.coordinatorlayout.widget.CoordinatorLayout
import com.example.deckor_teamc_front.databinding.InnerMapContainerBinding
import com.devkor.kodaero.databinding.InnerMapContainerBinding
import com.google.android.material.bottomsheet.BottomSheetBehavior
import androidx.fragment.app.FragmentActivity
import com.google.android.material.snackbar.Snackbar
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import com.example.deckor_teamc_front.databinding.ActivityMainBinding
import android.os.Handler
import android.os.Looper
import com.devkor.kodaero.databinding.ActivityMainBinding
import android.util.Log
import android.widget.FrameLayout
import android.widget.Toast
import androidx.fragment.app.Fragment
import androidx.fragment.app.FragmentManager
import com.google.android.material.bottomsheet.BottomSheetBehavior
import kotlin.reflect.KClass


class MainActivity : AppCompatActivity() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

object MarkerZoomLevelThreshold {
// 줌 레벨에 대응하는 ID 리스트를 다양하게 배치합니다.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.os.Bundle
import androidx.fragment.app.Fragment
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.util.Log
import android.view.View
import android.widget.TextView
import androidx.fragment.app.FragmentActivity
import androidx.fragment.app.FragmentManager
import androidx.lifecycle.ViewModelProvider
import androidx.lifecycle.lifecycleScope
import com.naver.maps.geometry.LatLng
import kotlinx.coroutines.launch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.view.LayoutInflater
import android.view.ViewGroup
import androidx.recyclerview.widget.RecyclerView
import com.example.deckor_teamc_front.databinding.PinSearchListItemBinding
import com.devkor.kodaero.databinding.PinSearchListItemBinding

class PinSearchAdapter : RecyclerView.Adapter<PinSearchAdapter.PinSearchViewHolder>() {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.graphics.Bitmap
import android.graphics.Canvas
Expand All @@ -13,7 +13,7 @@ import androidx.core.content.ContextCompat
import androidx.fragment.app.Fragment
import androidx.lifecycle.ViewModelProvider
import androidx.recyclerview.widget.LinearLayoutManager
import com.example.deckor_teamc_front.databinding.FragmentPinSearchBinding
import com.devkor.kodaero.databinding.FragmentPinSearchBinding
import com.google.android.material.bottomsheet.BottomSheetBehavior
import com.naver.maps.geometry.LatLng
import com.naver.maps.map.CameraAnimation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.content.Context
import android.graphics.*
import android.util.AttributeSet
import android.util.Log
import android.view.View

class RouteView @JvmOverloads constructor(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.content.Context
import android.graphics.Typeface
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.content.Context
import android.os.Bundle
Expand All @@ -16,7 +16,7 @@ import androidx.fragment.app.Fragment
import androidx.fragment.app.viewModels
import androidx.lifecycle.Observer
import androidx.recyclerview.widget.LinearLayoutManager
import com.example.deckor_teamc_front.databinding.FragmentSearchBuildingBinding
import com.devkor.kodaero.databinding.FragmentSearchBuildingBinding
import kotlinx.coroutines.*

class SearchBuildingFragment : Fragment() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.view.LayoutInflater
import android.view.View
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import android.content.Intent
import android.os.Bundle
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/layout/inner_map_container.xml
Original file line number Diff line number Diff line change
Expand Up @@ -168,20 +168,20 @@
android:background="@drawable/rounded_container_background"
android:clipToOutline="true">

<com.example.deckor_teamc_front.CustomScrollView
<com.devkor.kodaero.CustomScrollView
android:id="@+id/customScrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"/>

<com.example.deckor_teamc_front.GradientBlurView
<com.devkor.kodaero.GradientBlurView
android:id="@+id/customScrollTopBlur"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
app:hasTopBlur="true"
app:hasBottomBlur="false"/>

<com.example.deckor_teamc_front.GradientBlurView
<com.devkor.kodaero.GradientBlurView
android:id="@+id/customScrollBottomBlur"
android:layout_width="match_parent"
android:layout_height="@dimen/item_height"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/inner_maps.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
android:layout_height="match_parent"
android:scaleType="fitCenter" />

<com.example.deckor_teamc_front.RouteView
<com.devkor.kodaero.RouteView
android:id="@+id/routeView"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.deckor_teamc_front
package com.devkor.kodaero

import org.junit.Test

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ dependencyResolutionManagement {
}
}

rootProject.name = "deckor_teamC_front"
rootProject.name = "Devkor_TeamC_Front"
include(":app")