Answer the question
In order to leave comments, you need to log in
The application in Android Studio after the release is not installed, how to solve?
After the release, the application is not installed. There are 2 types of errors: 1) The application is installed, but the open button is gray and there is no application icon. 2) The application is not installed. Have you tried everything, what could be causing this error?
Answer the question
In order to leave comments, you need to log in
Look in the manifest to see if these filters are worth it for your start activity.
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
package="com.example.application">
...
android:versionCode="НОМЕР_СБОРКИ"
android:versionName="1.0"
...
...
defaultConfig {
applicationId "com.example.application"
minSdkVersion 16
targetSdkVersion 29
versionCode НОМЕР_СБОРКИ
versionName "1.0"
}
...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question