Upgraded Android Studio and the APK doesn't work, it says "App not installed" I send the APK through Google Drive.
- The phone has not installed my app before.
- Restarted for using Google Drive install
- Tried
multiDexEnabled true
- Tried
android:testOnly="false"
- Tried Generated signed APK with v1, v2, and both
- Tried Generated signed APK for debug and release with #5
- Tried "Build -> Build Bundle / APK -> Build APK
- Tried to increase the version Code
- Tried Invalidate Caches / Restart
- Tried to disable Play Protect from Play Store
They all didn't work at all My phone still shows "App not installs" even I press "Install anyway"
Don't know if this related: "App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent-filler."
EDIT: Manifast.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tang.helloworld" android:hardwareAccelerated="true">
<application
android:testOnly="false"
android:usesCleartextTraffic="true"
android:screenOrientation="portrait"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:windowSoftInputMode="stateHidden"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".setup.SetUpActivity"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustResize" />
<activity android:name=".menu.MenuActivity" />
<activity android:name=".selection.Activity_List_Level" />
<activity android:name=".selection.Activity_List_Industry" />
<activity android:name=".selection.Activity_List_Function" />
<activity android:name=".selection.Activity_List_Filter_Function" />
<activity android:name=".book.Activity_Book" />
<activity android:name=".selection.Activity_List_Record" />
<activity android:name=".feedback.Activity_Feedback" />
<activity android:name=".game.Activity_Game" />
<activity android:name=".game.Activity_Game_Finished" />
<activity android:name=".game.Activity_Level_Up" />
<activity android:name=".book.Activity_All_Book"></activity>
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE/"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
</manifest>