|
2 | 2 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
3 | 3 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
4 | 4 |
|
5 |
| - <!-- 카카오 로그인 커스텀 URL 스킴 설정 --> |
6 |
| - <activity |
7 |
| - android:name="com.kakao.sdk.flutter.AuthCodeCustomTabsActivity" |
8 |
| - android:exported="true"> |
9 |
| - <intent-filter android:label="flutter_web_auth"> |
10 |
| - <action android:name="android.intent.action.VIEW" /> |
11 |
| - <category android:name="android.intent.category.DEFAULT" /> |
12 |
| - <category android:name="android.intent.category.BROWSABLE" /> |
13 |
| - |
14 |
| - <!-- "kakao${YOUR_NATIVE_APP_KEY}://oauth" 형식의 앱 실행 스킴 설정 --> |
15 |
| - <!-- 카카오 로그인 Redirect URI --> |
16 |
| - <data android:scheme="kakao04496841f42caa15ce4a1a39f3677791" android:host="oauth"/> |
17 |
| - </intent-filter> |
18 |
| - </activity> |
19 |
| - |
20 | 5 | <application
|
21 | 6 | android:label="tradule"
|
22 | 7 | android:name="${applicationName}"
|
23 | 8 | android:icon="@mipmap/ic_launcher">
|
24 | 9 | <meta-data android:name="com.google.android.geo.API_KEY"
|
25 | 10 | android:value="AIzaSyAmRe1OP4XWA2WmplvZbvQbw5DnXcBuGDM"/>
|
| 11 | + <!-- 카카오 로그인 커스텀 URL 스킴 설정 --> |
| 12 | + <activity |
| 13 | + android:name="com.kakao.sdk.flutter.AuthCodeCustomTabsActivity" |
| 14 | + android:exported="true"> |
| 15 | + <intent-filter android:label="flutter_web_auth"> |
| 16 | + <action android:name="android.intent.action.VIEW" /> |
| 17 | + <category android:name="android.intent.category.DEFAULT" /> |
| 18 | + <category android:name="android.intent.category.BROWSABLE" /> |
| 19 | + |
| 20 | + <!-- "kakao${YOUR_NATIVE_APP_KEY}://oauth" 형식의 앱 실행 스킴 설정 --> |
| 21 | + <!-- 카카오 로그인 Redirect URI --> |
| 22 | + <data android:scheme="kakao04496841f42caa15ce4a1a39f3677791" android:host="oauth"/> |
| 23 | + </intent-filter> |
| 24 | + </activity> |
26 | 25 | <activity
|
27 | 26 | android:name=".MainActivity"
|
28 | 27 | android:exported="true"
|
|
0 commit comments