When I run flutter build apk --release
everything works just fine, In addition when I connect my phone to the computer and run flutter install -v
everything is ok. Also when I run flutter run -v
my app is working on my phone just fine.
BUT when I'm sending the apk manually to my phone, install and open my app, it's stuck on the splash screen.
I don't know what can case it not to work manually (since I cannot track my logs).
- I'm using firebase, my
google-services.json
is up to date. - flutter doctor is just fine.
- android SDK version 30.0.2.
- app/build.gradle compileSdkVersion 30.
- gradle version 6.6.1.
- classpath 'com.google.gms:google-services:4.3.5'
- classpath 'com.android.tools.build:gradle:4.0.2'
Any suggestions how to validate my application? What can case such a problem?
Thanks you!!!
More Information
The only error on flutter run
is:
Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.name.name signatures do not match previously installed version; ignoring!]
but as I said before the flutter run
do works and my app uploads correctly, so I think it is not related to my problem.