
All changes done now compiling it

š¤

š¤

it compiled but, did got this warning when run the with verbose mode


didn't work

It's seem like you don't have a launcher activity

OS is not showing open app Button

Can you share the activity code from the manifest
?

One min


<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<data android:scheme="appwrite-callback-640f1522049c96d734d6" />
</intent-filter>
</activity>```

this one...

For this try to run
flutter clean
flutter upgrade
flutter run
And then it should gone

flutter upgrade
to latest it happen

I guess you mean flutter pub get?

flutter pub upgrade

sorry

flutter run
does work app works perfectly fine in debug but after compling it doesn't

Okay I see the problem
You can't add the data
tag inside the LAUNCHER
activity
You need to add it in a separate activity as you see here
https://appwrite.io/docs/getting-started-for-flutter#android
That's mean your file should look like this
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.linusu.flutter_web_auth_2.CallbackActivity" android:exported="true">
<intent-filter android:label="flutter_web_auth_2">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="appwrite-callback-640f1522049c96d734d6" />
</intent-filter>
</activity>

Remember to remove the <data>
tag from the main activity

let me once try this

thank you so much this solves it, phew ...

finally from next morning I can now focus on working Logic part now... Thank you again š ...

Sure thing š
Recommended threads
- Appwrite MCP queries
how to user queries with appwrite mcp without getting `Appwrite Error: Invalid query: Syntax error`? database_list_documents function with such query: ``` { ...
- Local function throws EACCES error when ...
I am developing an Appwrite function locally. Up until now, the process has been as smooth as butter: I edit my files, save them, and this triggers a rebuild of...
- OAuth fails with Invalid Response or inv...
Im currently trying to use the Discord Oauth but i cant find a way to make it work. I followed the docs and set up the discord oauth application and enabled it...
