Skip to content

Commit

Permalink
[Feat] #4 Community 글쓰기 화면 전환
Browse files Browse the repository at this point in the history
  • Loading branch information
seohyeon121 committed Jul 13, 2024
1 parent dbe871d commit 32e7a5a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 5 deletions.
3 changes: 2 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

import com.android.build.gradle.internal.cxx.configure.gradleLocalProperties

plugins {
Expand Down Expand Up @@ -73,4 +74,4 @@ dependencies {
implementation("com.github.bumptech.glide:glide:4.11.0")
annotationProcessor("com.github.bumptech.glide:compiler:4.11.0")

}
}
33 changes: 29 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" >

<uses-permission android:name="android.permission.INTERNET" />

<application
android:name=".EnergyApp"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
Expand All @@ -14,17 +17,39 @@
tools:targetApi="31" >
<activity
android:name=".presentation.view.login.LoginActivity"
android:exported="false"
android:theme="@style/Theme.Android" />
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
android:name=".presentation.view.MainActivity"
android:name=".presentation.view.community.CommunityWritingActivity"
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity android:name=".presentation.view.MainActivity" />
<activity
android:name="com.kakao.sdk.auth.AuthCodeHandlerActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<!-- Redirect URI: "kakao${NATIVE_APP_KEY}://oauth" -->
<data android:host="oauth"
android:scheme="kakao${KAKAO_NATIVE_KEY}" />
</intent-filter>
</activity>

</application>

</manifest>
</manifest>

0 comments on commit 32e7a5a

Please sign in to comment.