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
13 changes: 13 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,19 @@
</intent-filter>
</activity>

<activity android:name="com.aboutyou.dart_packages.sign_in_with_apple.CallbackActivity"
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"/>
<data
android:scheme="https"
android:host="chartreuse-gratis-lungfish.glitch.me"
android:pathPrefix="/callbacks/sign_in_with_apple"/>
</intent-filter>
</activity>

Comment on lines +57 to +69
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이게 꼭 필요한지는 잘 모르겠어요

처음에 없을 때도 잘 됬었거든요.. 일단 추가해 놓는 것은 좋은 것 같아요!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

추후 리펙토링 단계에서 같이 알아보시죵~

<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
Expand Down
Loading