I think (or hope) it is caused by something simple, but I have deeply loaded the documents of Android developers, searched the Internet and have not yet found an answer.
My application was published a few months ago, and everything was in order. But now, all of a sudden, it is incompatible with almost all major Android devices. In fact, in the entire Android ecosystem, only 318 devices support my application. Now my application does not deal with rocket science. All he does is send and receive data.
Here is the full manifest file:
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="901" android:versionName="1.0.0" package="com.strategy6.redshift" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<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" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:supportsRtl="true">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize">
<intent-filter android:label="@string/launcher_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
</manifest>
Run codeHide resultThe app was developed using Ionic. We downloaded the latest version of Ionic and recompiled, thinking that this could automatically fix, but it is not.
, , - , . - ? - ? !