I try to generate apk file for my flutter app, I used flutter build apk --release
command after flutter clean
command.
note that after used flutter build apk --release
command I got this error:
Note: C:srcflutter.pub-cachehostedpub.dartlang.organdroid_intent-0.3.7+3androidsrcmainjavaioflutterpluginsandroidintentMethodCallHandlerImpl.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Note: C:srcflutter.pub-cachehostedpub.dartlang.orgurl_launcher-5.4.5androidsrcmainjavaioflutterpluginsurllauncherWebViewActivity.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
After that, I got the apk file from this path: C:project_pathuildappoutputsapk
elease
, but when I try to install this apk from the mobile I got this app not installed
:
note: I'm tried more than one device with a different android version.
Please help me to solve my problem.