App Not Installed After Upgrading To Android - P
App is installing while connecting via USB to mobile, but while sending .apk file to others it saying 'App not Installed'(both debug and release).I have tried different solutions f
Solution 1:
You can override testOnly
flag adding following line to gradle.properties
:
android.injected.testOnly=false
Solution 2:
Android P preview SDK is a preview and you should not be distributing APKs built with it. Use a non-preview SDK for compiling APKs that are meant for other people to use.
Technically, the installation limitation is that the APKs have testOnly
flag set to true. To work around that, see ADB Install Fails With INSTALL_FAILED_TEST_ONLY
Post a Comment for "App Not Installed After Upgrading To Android - P"