如果安装然后显示空白屏幕,则 apk 未安装Flutter 飞镖语言

问题描述

我正在研究 Dart 语言。我生成 split-per-abi (.apk) 以及 release (.apk)。之后,当我尝试安装它时,它没有安装在某些设备上或此 apk 中安装它没有在白色空白屏幕上显示任何内容

Flutter 2.0.0 • 通道稳定 • https://github.com/flutter/flutter.git 框架 • 修订版 60bd88df91(6 周前) • 2021-03-03 09:13:17 -0800 引擎 • 修订版 40441def69 工具 • Dart 2.12.0

min-sdk-version 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>

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)