Flutter apk未安装,如果安装,则显示空白屏幕。颤振省道语言

Flutter apk未安装,如果安装,则显示空白屏幕。颤振省道语言,flutter,dart,apk,flutter-debug,Flutter,Dart,Apk,Flutter Debug,我正在使用Dart语言。我根据abi(.apk)以及发行版(.apk)生成拆分。之后,当我尝试安装时,它没有安装在某些设备上,或者安装了此apk的设备上,它没有在白色的空白屏幕上显示任何内容 颤振2.0.0•通道稳定• 框架•修订版60bd88df91(6周前)•2021-03-03 09:13:17-0800 发动机•版本40441def69 工具•Dart 2.12.0 min sdk版本23 <uses-permission android:name="android.pe

我正在使用Dart语言。我根据abi(.apk)以及发行版(.apk)生成拆分。之后,当我尝试安装时,它没有安装在某些设备上,或者安装了此apk的设备上,它没有在白色的空白屏幕上显示任何内容

颤振2.0.0•通道稳定• 框架•修订版60bd88df91(6周前)•2021-03-03 09:13:17-0800 发动机•版本40441def69 工具•Dart 2.12.0

min sdk版本23

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.CAMERA" />


<application
    android:label="Share card"
    android:icon="@mipmap/launcher_icon">
    <activity
        android:name=".MainActivity"
        android:launchMode="singleTop"
        android:theme="@style/LaunchTheme"
        android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
        android:hardwareAccelerated="true"
        android:windowSoftInputMode="adjustResize">
        <!-- Specifies an Android theme to apply to this Activity as soon as
             the Android process has started. This theme is visible to the user
             while the Flutter UI initializes. After that, this theme continues
             to determine the Window background behind the Flutter UI. -->
        <meta-data
          android:name="io.flutter.embedding.android.NormalTheme"
          android:resource="@style/NormalTheme"
          />
        <!-- Displays an Android View that continues showing the launch screen
             Drawable until Flutter paints its first frame, then this splash
             screen fades out. A splash screen is useful to avoid any visual
             gap between the end of Android's launch screen and the painting of
             Flutter's first frame. -->
        <meta-data
          android:name="io.flutter.embedding.android.SplashScreenDrawable"
          android:resource="@drawable/launch_background"
          />
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
    <!-- Don't delete the meta-data below.
         This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
    <meta-data
        android:name="flutterEmbedding"
        android:value="2" />
</application>



可能您的某些设备的sdk低于23。它说
minsdkversion23
它是minsdkversion23,现在正在安装,但没有显示任何内容,只有白色或黑色屏幕显示不工作检查应用程序的错误日志