Flutter和Android发布aab包时,'android:exported=true'无效。

6
我试图上传AAB文件到Play控制台,但是提示上传了一个具有意图过滤器的活动、活动别名、服务或广播接收器的APK或Android应用捆绑包,但没有设置'android:exported'属性。该文件无法在Android 12或更高版本上安装。请参见:developer.android.com/about/versions/12/behavior-changes-12#exported错误。我还将exported=true属性设置为该活动。同时添加了android:exported="true" tools:node="merge"

enter image description here

根据建议,我已经在清单中进行了更改,但仍然遇到同样的问题。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        package="com.example.example">
    
        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
        <uses-permission android:name="android.permission.INTERNET"/>
    
    
    
        <!-- io.flutter.app.FlutterApplication is an android.app.Application that
             calls FlutterMain.startInitialization(this); in its onCreate method.
             In most cases you can leave this as-is, but you if you want to provide
             additional functionality it is fine to subclass or reimplement
             FlutterApplication and put your custom class here. -->
        <application
            android:label="Demo"
            android:icon="@mipmap/ic_launcher_foreground">
            <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"
                android:exported="true"
                tools:node="merge"
                >
                <!-- 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"
                    />
    
    
                <meta-data
                    android:name="com.google.firebase.messaging.default_notification_channel_id"
                    android:value="demo"/>
                <intent-filter>
                    <action android:name="FLUTTER_NOTIFICATION_CLICK"/>
                    <category android:name="android.intent.category.DEFAULT"/>
                </intent-filter>
    
                <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"
                />
    
            <meta-data
                android:name="com.facebook.sdk.ApplicationId"
                android:value="@string/facebook_app_id" />
        </application>
</manifest>

你的compileSdkVersion和targetSdkVersion是多少?应该是30或31。 - Hardik Mehta
它的compileSdkVersion为31,targetSdkVersion也为31。 - Ankur Shinde
请尝试不使用 tools:node="merge" 工具。 - Hardik Mehta
是的,我也尝试过不加它。但仍然出现相同的错误。如果我从其他库将exported = false更改为true,那么它将开始向构建报告错误。 - Ankur Shinde
你能分享一下那个错误吗? - Hardik Mehta
显示剩余6条评论
2个回答

1
我会全局搜索所有导出的值集清单文件。在这些文件之间,我只会更改 Firebase Messaging 的清单文件中的值。我将在 Firebase Messaging 的清单文件中设置 android:exported="true"。

1
你能分享一下你的代码,看看应该在哪里添加吗? - MD ZDN
打开 Android 模块中的项目,全局搜索 "android:exported" 并将值更改为 true。 - Ankur Shinde

0

使用Android Studio打开您的Android清单文件,并查看由其他Flutter包生成的合并选项卡,以了解活动、活动别名、服务或带有意图过滤器的广播接收器。

将android:exported="true"添加到任何具有意图过滤器的活动、活动别名、服务或广播接收器中。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接