Android + Moto G7 Play = Несовместимое приложение - PullRequest
0 голосов
/ 23 октября 2019

У меня большая проблема, я делаю простое приложение с реагировать на нативный в Android, это приложение имеет 1 экран и использует веб-просмотр, это простое приложение.

Мое приложение хорошо работает в Motorola G7, но тольков G7 Play он не совместим.

androidManifest моего приложения.

<uses-permission android:name="android.permission.INTERNET" android:required="true"/>

<application
  android:name=".MainApplication"
  android:label="@string/app_name"
  android:icon="@mipmap/ic_launcher"
  android:roundIcon="@mipmap/ic_launcher_round"
  android:allowBackup="true"
  android:usesCleartextTraffic="true"
  android:theme="@style/AppTheme">

  <service
    android:name=".OneSignalNotificationExtender"
    android:permission="android.permission.BIND_JOB_SERVICE"
    android:exported="false">
    <intent-filter>
        <action android:name="com.onesignal.NotificationExtender" />
    </intent-filter>
  </service>

  <activity
    android:name=".MainActivity"
    android:label="@string/app_name"
    android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
    android:windowSoftInputMode="adjustResize"
    android:launchMode="singleTop">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
  </activity>
  <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>

Я не знаю, что мне нужно сделать для сборки в G7 Play.

...