无法上传到Android Market [英] failed to upload to android market

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

问题描述

大家好,尝试将应用上传到Google Play,但始终收到此错误

hi guys trying to upload an app to google play but keep getting this error

上传失败

您上传了一个APK或Android应用程序捆绑包,该捆绑包在其清单中指定了一个动作模式文档,但目前尚不允许使用动作模式.如果您是Beta版计划的一部分,则需要将您的开发者帐户列入白名单.

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.

有人可以解释一下我做错了什么吗.过去我上传的应用从来没有遇到过这个错误.

Can somebody please explain what im doing wrong.. ive uploaded apps in the past n never come across this error before.

这是我的清单文件

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="my package name">
<uses-permission android:name="android.permission.INTERNET"/>
<application
    android:name="my app name"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">


    <activity
        android:name="My main activity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar" />
    <activity android:name="Genres" />
    <activity android:name="home" />
    <activity
        android:name="playerlayout"
        android:configChanges="orientation|screenSize|keyboardHidden|smallestScreenSize|screenLayout"
        android:hardwareAccelerated="true" />


    <meta-data android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
        android:value="my package name.CastOptionsProvider" />

    <activity android:name="layouts" />
    <activity android:name="layouts" />
    <activity android:name="layouts" />
    <activity android:name="layouts" />
    <activity android:name="my layouts" />
    <activity android:name="my layouts" />
    <activity android:name="my layouts" />
    <activity android:name="my layouts" />
    <activity android:name="my layouts" />
    <activity android:name="my layouts" />
    <activity
        android:name="my layouts"
        android:hardwareAccelerated="false"
        android:largeHeap="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="my layouts" />

    <meta-data
        android:name="com.google.android.gms.ads.APPLICATION_ID"
        android:value="my value" />
    <meta-data
        android:name="com.google.android.actions"
        android:resource="@xml/app_prefs" />

    <activity
        android:name="my layouts"
        android:theme="@style/Theme.AppCompat"
        android:label="@string/action_settings" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        </intent-filter>
    </activity>
</application>

</manifest>

推荐答案

该错误消息表明该错误来自使用:

The error message suggests that the error comes from the use of:

<meta-data
    android:name="com.google.android.actions"
    android:resource="@xml/app_prefs" />

您最近添加了这个吗?看来Android操作的使用仍处于白名单之内.

Did you add this recently? It looks like the use of Android actions are still under a whitelist.

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

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