-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [nunu/#47] update : 파일구조화 data(Model) / ui(View, Controller) / utils 구분 * [nunu/#47] feat: 카카오 로그인 구현 - gradle 설정 - 카카오 해시값 설정 - 카카오 로그인 구현 - 카카오 로그인 성공시 이동
- Loading branch information
1 parent
75287d1
commit 816d40a
Showing
58 changed files
with
347 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
UMC_6th/app/src/main/java/com/example/umc_6th/GlobalApplication.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.example.umc_6th; | ||
|
||
import android.app.Application | ||
import com.kakao.sdk.common.KakaoSdk | ||
|
||
class GlobalApplication : Application() { | ||
override fun onCreate() { | ||
super.onCreate() | ||
|
||
// Kakao Sdk 초기화 | ||
KakaoSdk.init(this, "9d12108978063874c1db2eef7e2b81de") | ||
} | ||
} |
92 changes: 0 additions & 92 deletions
92
UMC_6th/app/src/main/java/com/example/umc_6th/LoginActivity.kt
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
UMC_6th/app/src/main/java/com/example/umc_6th/adapter/SharedPreferencesHelper.kt
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...rc/main/java/com/example/umc_6th/Album.kt → ...om/example/umc_6th/data/entities/Album.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.example.umc_6th | ||
package com.example.umc_6th.data.entities | ||
|
||
|
||
import androidx.room.Entity | ||
|
2 changes: 1 addition & 1 deletion
2
...src/main/java/com/example/umc_6th/Like.kt → ...com/example/umc_6th/data/entities/Like.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...src/main/java/com/example/umc_6th/Song.kt → ...com/example/umc_6th/data/entities/Song.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...src/main/java/com/example/umc_6th/User.kt → ...com/example/umc_6th/data/entities/User.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...main/java/com/example/umc_6th/AlbumDao.kt → ...om/example/umc_6th/data/local/AlbumDao.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
.../main/java/com/example/umc_6th/SongDao.kt → ...com/example/umc_6th/data/local/SongDao.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
.../java/com/example/umc_6th/SongDatabase.kt → ...xample/umc_6th/data/local/SongDatabase.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
.../main/java/com/example/umc_6th/UserDao.kt → ...com/example/umc_6th/data/local/UserDao.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...java/com/example/umc_6th/ApiRepository.kt → ...mple/umc_6th/data/remote/ApiRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.example.umc_6th | ||
package com.example.umc_6th.data.remote | ||
|
||
class ApiRepository { | ||
companion object { | ||
|
2 changes: 1 addition & 1 deletion
2
.../java/com/example/umc_6th/BaseResponse.kt → ...ample/umc_6th/data/remote/BaseResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...main/java/com/example/umc_6th/AlbumApi.kt → ...ple/umc_6th/data/remote/album/AlbumApi.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...java/com/example/umc_6th/AlbumResponse.kt → ...mc_6th/data/remote/album/AlbumResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
.../java/com/example/umc_6th/AlbumService.kt → ...umc_6th/data/remote/album/AlbumService.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
.../main/java/com/example/umc_6th/AuthApi.kt → ...ample/umc_6th/data/remote/auth/AuthApi.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
...n/java/com/example/umc_6th/AuthService.kt → ...e/umc_6th/data/remote/auth/AuthService.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...a/com/example/umc_6th/RetrofitInstance.kt → ..._6th/data/remote/auth/RetrofitInstance.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../main/java/com/example/umc_6th/SongApi.kt → ...ample/umc_6th/data/remote/song/SongApi.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../java/com/example/umc_6th/SongResponse.kt → .../umc_6th/data/remote/song/SongResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...n/java/com/example/umc_6th/SongService.kt → ...e/umc_6th/data/remote/song/SongService.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...mple/umc_6th/adapter/AlbumPagerAdapter.kt → ...e/umc_6th/ui/adapter/AlbumPagerAdapter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.