-
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.
- Loading branch information
1 parent
b6b4337
commit 055aabe
Showing
9 changed files
with
101 additions
and
120 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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, "9869def2f21ef97ba7f905ec34960cbb") | ||
} | ||
} |
Oops, something went wrong.