如何设置Android导出为 cordova 应用程序

k2fxgqgv  于 2022-11-03  发布在  Android
关注(0)|答案(2)|浏览(161)

我需要在Google Play上发布针对Android 12的Cordova应用程序。当我上传APK文件时,出现错误

You uploaded an APK or Android App Bundle which has an activity, activity alias, service or broadcast receiver with intent filter, but without the 'android:exported' property set. This file can't be installed on Android 12 or higher. See: developer.android.com/about/versions/12/behavior-changes-12#exported

我在互联网上做了一些研究,发现应该将此配置添加到config.xml中:

<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application/activity">
        <activity android:exported="true"/>
    </edit-config>

它在我的一些应用程序中运行良好,但其中一个应用程序在上传到Google Play时仍然显示错误。它的AndroidManifest.xml如下所示:

<?xml version='1.0' encoding='utf-8'?>
  <manifest android:hardwareAccelerated="true" android:versionCode="750" android:versionName="7.5.0" package="cz.foxtrot.motoquest" xmlns:android="http://schemas.android.com/apk/res/android">
   <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
   <uses-permission android:name="android.permission.INTERNET" />
   <application android:hardwareAccelerated="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:usesCleartextTraffic="true">
       <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" android:exported="true" android:label="@string/activity_name" android:launchMode="singleTask" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">
           <intent-filter android:label="@string/launcher_name">
               <action android:name="android.intent.action.MAIN" />
               <category android:name="android.intent.category.LAUNCHER" />
           </intent-filter>
       </activity>
       <receiver android:enabled="true" android:name="nl.xservices.plugins.ShareChooserPendingIntent">
           <intent-filter>
               <action android:name="android.intent.action.SEND" />
           </intent-filter>
       </receiver>
       <provider android:authorities="${applicationId}.sharing.provider" android:exported="true" android:grantUriPermissions="true" android:name="nl.xservices.plugins.FileProvider">
           <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/sharing_paths" />
       </provider>
       <meta-data android:name="com.transistorsoft.locationmanager.license_key" android:value="b2c8e0bf1863da91b0f941ddf8278f699d320a320182cf7eb1d1e5c660ee17be" />
   </application>
   <uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
   <uses-permission android:name="com.android.vending.BILLING" />
   <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
   <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>

任何想法,又能有什么错呢?

gab6jxml

gab6jxml1#

试着把这个添加到你的cordova config.xml的<platform name="android">下:

<edit-config file="app/src/main/AndroidManifest.xml" target="/manifest/application/activity" mode="merge">
  <activity android:exported="true" />
</edit-config>
<edit-config file="app/src/main/AndroidManifest.xml" target="/manifest/application/service" mode="merge">
  <service android:exported="true" />
</edit-config>
0pizxfdo

0pizxfdo2#

根据Carl Smith的回答,您可能需要在更多标签上设置导出。edit-config标签的作用正如其名称所言,它在XML配置文件生成后对其进行编辑。在本例中,它将添加android:exported标签。
尝试将其添加到 config.xml 文件的标记内:

<edit-config file="app/src/main/AndroidManifest.xml" target="/manifest/application/activity" mode="merge">
        <activity android:exported="true"/>
    </edit-config>  

    <edit-config file="app/src/main/AndroidManifest.xml" target="/manifest/application/service" mode="merge">
        <service android:exported="true" />
    </edit-config>

    <edit-config file="app/src/main/AndroidManifest.xml" target="/manifest/application/provider" mode="merge">
        <provider android:exported="true" />
    </edit-config>

    <edit-config file="app/src/main/AndroidManifest.xml" target="/manifest/application/receiver" mode="merge">
        <receiver android:exported="true" />
    </edit-config>

它不仅会为 * 活动 * 和 * 服务 * 标签设置标志,还会为 * 提供者 * 和 * 接收者 * 设置标志。
请注意,这会将导出标志设置为true。最好的解决方案是等到插件的所有维护者都更新了插件,但在此之前,至少您可以将工作应用提交到Play商店,并确认API 31+的使用要求。
请注意,你可能不需要所有这4个修改。这取决于你使用的插件和它们的更新程度。从一个开始(从上到下),如果它不起作用,添加更多,如果它起作用,尝试删除其他的,看看你需要的最低限度是多少。不要改变超过需要的。

相关问题