无法上传到商店 [英] Can't upload to play store

查看:63
本文介绍了无法上传到商店的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

每当我尝试将此应用上传到Play商店时,都会收到以下错误消息:您上传了一个APK或Android应用捆绑包,该捆绑包在其清单中指定了一个动作模式文档,但目前尚不允许使用动作模式.Beta版程序,则需要将您的开发者帐户列入白名单."

Whenever I try to upload this app to the play store I get this error:"You uploaded an APK or Android App Bundle which specifies an actions schema document in its manifest, but action schemas are not yet allowed. If you are part of a beta program, you need to have your developer account whitelisted."

这是我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="scanfeira.kcollector.com.br.kcollectorfeira">

    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <application
        android:name="com.orm.SugarApp"
        android:allowBackup="true"
        android:icon="@drawable/kcollector"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        tools:replace="android:icon">

        <meta-data
            android:name="DATABASE"
            android:value="kcollectorFeira.db" />
        <meta-data
            android:name="VERSION"
            android:value="2" />
        <meta-data
            android:name="QUERY_LOG"
            android:value="true" />
        <meta-data
            android:name="DOMAIN_PACKAGE_NAME"
            android:value="scanfeira.kcollector.com.br.kcollectorfeira.model" />

        <activity
            android:name=".TelaInicial"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".scan.CameraScan"
            android:screenOrientation="fullSensor"
            android:stateNotNeeded="true"
            android:theme="@style/zxing_CaptureTheme"
            android:windowSoftInputMode="stateAlwaysHidden" />
        <provider
            android:name=".GenericFileProvider"
            android:authorities="scanfeira.kcollector.com.br.kcollectorfeira"
            android:exported="false"
            android:grantUriPermissions="true">

        </provider>

    </application>

</manifest>

推荐答案

可能是您使用的一个lib欺骗了:android:name ="com.google.android.actions"查看合并的AndroidManifest.xml,以确认该理论:

Possible that one of the libs you use delares this: android:name="com.google.android.actions" Look at this merged AndroidManifest.xml to confirm that theory:

/project/module/build/intermediates/manifests/full/debug/AndroidManifest.xml

/project/module/build/intermediates/manifests/full/debug/AndroidManifest.xml

这篇关于无法上传到商店的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆