当前位置: 首页 > 知识库问答 >
问题:

谷歌播放控制台-Android应用程序支持0设备

宫修贤
2023-03-14

在Google Play控制台中设置android应用程序时遇到问题。上传apk后,我看到“支持的Android设备-0设备”。

这是舱单

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

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

                <application
                    android:allowBackup="true"
                    android:hardwareAccelerated="true"
                    android:icon="@drawable/xxxxxx"
                    android:label="@string/app_name"
                    android:supportsRtl="false"
                    android:theme="@style/AppTheme">
                    <activity
                        android:name=".SplashActivity"
                        android:theme="@style/SplashTheme">
                        <intent-filter>
                            <action android:name="android.intent.action.MAIN" />

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

            </manifest>

这里是gradle设置

                apply plugin: 'com.android.application'

            android {
                compileSdkVersion 26
                defaultConfig {
                    applicationId "xxxxxxxxxx"
                    minSdkVersion 23
                    targetSdkVersion 26
                    versionCode 5
                    versionName "1.0.1"
                    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
                    vectorDrawables.useSupportLibrary = true
                }
                lintOptions {
                    checkReleaseBuilds false
                    abortOnError false
                }
                buildTypes {
                    release {
                        minifyEnabled true
                        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                    }
                }
            }

            dependencies {
                compile fileTree(dir: 'libs', include: ['*.jar'])
                androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
                    exclude group: 'com.android.support', module: 'support-annotations'
                })
                implementation 'com.android.support:appcompat-v7:26.1.0'
                implementation 'com.android.support:preference-v7:26.1.0'
                implementation 'com.android.support:preference-v14:26.1.0'
                implementation 'com.android.support:design:26.1.0'
                implementation 'com.android.support:recyclerview-v7:26.1.0'
                implementation 'com.android.support:cardview-v7:26.1.0'
                implementation 'com.android.support:gridlayout-v7:26.1.0'
                implementation 'com.android.support.constraint:constraint-layout:1.0.2'
                implementation 'com.android.support:palette-v7:26.1.0'
                compile 'com.squareup.picasso:picasso:2.5.2'
                compile 'org.apache.directory.studio:org.apache.commons.io:2.4'
                implementation 'com.android.support:support-v4:26.1.0'
                testCompile 'junit:junit:4.12'

                compile 'com.jakewharton:butterknife:8.8.1'
                annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
            }

该应用程序已经在一些设备上进行了测试。

我知道这是一个常见的问题,但是我发现的大多数问题都与相机的许可有关。

我做错了什么?

共有1个答案

周泰
2023-03-14

这个问题与公地有关。io包,必须将其更改为:

编译comons-io: comons-io: 2.4

 类似资料:
  • 在google play控制台上更新应用程序时出错。我提供了正确的密钥和密码。但是仍然有错误。如何修复它?你能帮忙吗? 错误我在谷歌播放控制台 上载失败:您上载的APK未使用上载证书签名。您必须使用相同的证书。上载证书具有指纹:

  • 我正在尝试向Google Play商店发布一个新的应用程序,我已经完成了Google Play控制台中要求的所有步骤,除了声明应用程序中是否有广告。 问题是当我去“应用内容- 设置在哪里? 更新这似乎只发生在火狐,在铬的选项显示

  • 我已经发布了两个版本的我的应用程序apks到谷歌播放控制台。1.3、1.4) 但后来我意识到我上传的最新版本(1.4)中有一个小问题。所以现在我需要取消发布最新版本(1.4)并再次发布旧版本(1.3)。 我该怎么做?

  • 我尝试过多次上传。我还研究了许多关于同一问题的其他SO问题。在我的物理设备上运行良好,但当上传到google play时,它声明支持0台设备。 建造。Gradle: 编辑 所以我反编译了我的。apk。这表明android清单是完全空白的。 EDIT\u 1,所以我尝试在清单中添加标记,而不是依赖gradle。开发人员控制台仍然认为我的应用程序支持零设备(在测试设备上运行良好)。 我还创建了一个新的

  • 我上传了一个aab到play控制台,最后把它列在play商店里。这个应用程序是用Python和Kivy编写的,我能够通过首先运行Buildozer,然后通过Android Studio运行脚本,按照网络上的各种说明来生成aab。 我可以从aab生成的游戏控制台下载apk,它工作得很好。然而,当我从play store安装应用程序时,它一打开就关闭。然而,我没有得到真正的坠机报告。 这是我的第一个真

  • 现在我的问题是如何从开发者控制台中删除这个项目?我不想在我的开发者控制台中看到暂停的应用程序。