Skip to content

Commit 9ef5180

Browse files
authored
Merge pull request #6 from Team-Planz/feature/issue-005-debug-package
[ISSUE-005] 릴리즈 앱과 디버그 앱 분리
2 parents 27fd25f + fb2b4c9 commit 9ef5180

File tree

5 files changed

+37
-3
lines changed

5 files changed

+37
-3
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ android {
3333
signingConfig = signingConfigs.getByName("debug")
3434
isDebuggable = true
3535
isMinifyEnabled = false
36+
applicationIdSuffix = ".debug"
37+
manifestPlaceholders["appName"] = Configs.APP_NAME + ".Debug"
3638
}
3739

3840
release {
@@ -41,6 +43,7 @@ android {
4143
getDefaultProguardFile("proguard-android-optimize.txt"),
4244
"proguard-rules.pro"
4345
)
46+
manifestPlaceholders["appName"] = Configs.APP_NAME
4447
}
4548
}
4649
compileOptions {

app/google-services.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,35 @@
3333
]
3434
}
3535
}
36+
},
37+
{
38+
"client_info": {
39+
"mobilesdk_app_id": "1:626079185695:android:4113c4107ea104c47cce2a",
40+
"android_client_info": {
41+
"package_name": "com.yapp.growth.debug"
42+
}
43+
},
44+
"oauth_client": [
45+
{
46+
"client_id": "626079185695-j6kgiofc8h8tqh8gu8talv5c1soq866s.apps.googleusercontent.com",
47+
"client_type": 3
48+
}
49+
],
50+
"api_key": [
51+
{
52+
"current_key": "AIzaSyAyx8MnwBiLESMNMhh0yARVCWxWkBiIs9U"
53+
}
54+
],
55+
"services": {
56+
"appinvite_service": {
57+
"other_platform_oauth_client": [
58+
{
59+
"client_id": "626079185695-j6kgiofc8h8tqh8gu8talv5c1soq866s.apps.googleusercontent.com",
60+
"client_type": 3
61+
}
62+
]
63+
}
64+
}
3665
}
3766
],
3867
"configuration_version": "1"

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
android:name=".PlanzApplication"
99
android:allowBackup="true"
1010
android:icon="@mipmap/ic_launcher"
11-
android:label="@string/app_name"
11+
android:label="${appName}"
1212
android:roundIcon="@mipmap/ic_launcher_round"
1313
android:supportsRtl="true"
1414
android:theme="@style/Theme.Growth">
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
<resources>
2-
<string name="app_name">플랜즈</string>
3-
</resources>
2+
</resources>

buildSrc/src/main/java/Configs.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ object Configs {
88
const val TARGET_SDK = 32
99
const val VERSION_CODE = 220805001
1010
const val VERSION_NAME = "1.1.1"
11+
12+
// App Info
13+
const val APP_NAME = "플랜즈"
1114
}

0 commit comments

Comments
 (0)