feat: Add CallbackActivity for flutter_web_auth_2 and update launcher icons for android

Changed files
+10
android
app
src
main
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
+10
android/app/src/main/AndroidManifest.xml
··· 25 <category android:name="android.intent.category.LAUNCHER"/> 26 </intent-filter> 27 </activity> 28 <!-- Don't delete the meta-data below. 29 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> 30 <meta-data
··· 25 <category android:name="android.intent.category.LAUNCHER"/> 26 </intent-filter> 27 </activity> 28 + <activity 29 + android:name="com.linusu.flutter_web_auth_2.CallbackActivity" 30 + android:exported="true"> 31 + <intent-filter android:label="flutter_web_auth_2"> 32 + <action android:name="android.intent.action.VIEW" /> 33 + <category android:name="android.intent.category.DEFAULT" /> 34 + <category android:name="android.intent.category.BROWSABLE" /> 35 + <data android:scheme="grainflutter" /> 36 + </intent-filter> 37 + </activity> 38 <!-- Don't delete the meta-data below. 39 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> 40 <meta-data
android/app/src/main/res/mipmap-hdpi/ic_launcher.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-mdpi/ic_launcher.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-xhdpi/ic_launcher.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png

This is a binary file and will not be displayed.

android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png

This is a binary file and will not be displayed.