Skip to content
Merged
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
5 changes: 4 additions & 1 deletion android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ keystore.properties
.cxx/

# Google Services (e.g. APIs or Firebase)
google-services.json
# google-services.json은 비밀정보가 아니다(API 키는 패키지명+SHA-1로 제한됨).
# 무시하면 다른 머신·CI에서 google-services 플러그인이 조용히 미적용되어
# Firebase 리소스 없는 APK가 나오고 푸시가 에러 없이 죽는다(#361).
# google-services.json

# Freeline
freeline.py
Expand Down
29 changes: 29 additions & 0 deletions android/app/google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "266626418049",
"project_id": "finders-firebase",
"storage_bucket": "finders-firebase.firebasestorage.app"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:266626418049:android:97d15cca1a967db201d480",
"android_client_info": {
"package_name": "com.finders"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyBLFOVwkDrk0p_PjsTzt1WsTygQnoPDyUI"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}
7 changes: 7 additions & 0 deletions android/app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,10 @@
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

# Kakao SDK는 모델을 kotlinx.serialization으로 다루는데 KakaoJson이 serializer를
# 리플렉션으로 찾는다. R8은 그 참조를 못 봐서 컴파일 시 생성된 $$serializer/Companion을
# 통째로 지우고, 저장된 토큰을 읽는 순간 SerializationException이 난다(#361).
# SDK의 consumer 룰은 액티비티만 keep한다. 2.23.0 기준 @Serializable 클래스는
# 전부 *.model 패키지 안에 있다(auth/common/share/template/user).
-keep class com.kakao.sdk.**.model.* { <fields>; }

This file was deleted.

This file was deleted.

Loading