Skip to content

Commit 4bad5d7

Browse files
committed
🔥:: AndroidManifest DEFAULT, BROWSABLE category 태그 삭제
1 parent fdbd9c2 commit 4bad5d7

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

‎app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
<intent-filter>
2525
<action android:name="android.intent.action.MAIN" />
2626

27-
<category android:name="android.intent.category.DEFAULT" />
28-
<category android:name="android.intent.category.BROWSABLE" />
2927
<category android:name="android.intent.category.LAUNCHER" />
3028
</intent-filter>
3129
</activity>

‎core/network/build.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ android {
1616
defaultConfig {
1717
buildConfigField("String", "BASE_URL", getApiKey("BASE_URL"))
1818
buildConfigField("String", "GOOGLE_CLIENT_ID", getApiKey("GOOGLE_CLIENT_ID"))
19-
buildConfigField("String", "REDIRECT_URI", getApiKey("REDIRECT_URI"))
2019
buildConfigField("String", "SCOPE", getApiKey("SCOPE"))
2120
}
2221

@@ -43,9 +42,6 @@ dependencies {
4342

4443
fun getApiKey(propertyKey: String): String {
4544
val propFile = rootProject.file("./local.properties")
46-
if (!propFile.exists()) {
47-
throw FileNotFoundException("local.properties file not found")
48-
}
4945
val properties = Properties()
5046
properties.load(FileInputStream(propFile))
5147
return properties.getProperty(propertyKey) ?: throw IllegalArgumentException("Property $propertyKey not found in local.properties file")

0 commit comments

Comments
 (0)