微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决如果安装然后显示空白屏幕,则 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 举报,一经查实,本站将立刻删除。