简体   繁体   English

Google Play上支持0个设备

[英]0 supported device on Google Play

Gradle.build (App level)
apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "23.0.2"
    defaultConfig {
        applicationId "iadsa.my.dailyexpenses"
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 3
        versionName "1.0.2"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile files('libs/jexcel_android.jar')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:25.0.0'
    compile 'com.android.support:design:25.0.0'
    compile 'com.android.support:cardview-v7:25.0.0'
    compile 'com.android.support:recyclerview-v7:25.0.0'
    compile 'com.github.PhilJay:MPAndroidChart:v2.0.9'
}

Manifest file
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="iadsa.my.dailyexpenses">
    <uses-sdk android:minSdkVersion="16"
        android:targetSdkVersion="25"
        android:maxSdkVersion="25" />


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

    <application
        android:name=".application.AppApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".activities.StartUpActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".activities.ExpenseActivity"
            android:label="@string/exp_activity_name" />
        <activity
            android:name=".activities.AllExpenseActivity"
            android:label="@string/all_exp_activity_name" />
        <activity
            android:name=".activities.ExpenseDetailsActivity"
            android:label="@string/activity_exp_details_name" />
        <activity
            android:name=".activities.ExpenseAnalysisActivity"
            android:label="@string/analysis_name" />
        <activity
            android:name=".activities.ContactUsActivity"
            android:label="@string/action_contact_us"/>
    </application>

</manifest>

I have uploaded apk on google play. 我已经在Google Play上上传了APK。 And it is not supporting a single device. 而且它不支持单个设备。 I am not able to fix issue. 我无法解决问题。 Please any one can help me regarding the issue. 请任何人可以帮助我解决这个问题。 I will be thankful to the person. 我会感谢那个人。 Please I need it immediately. 请立即使用。

Screenshot of play store apk info. 播放商店apk信息的屏幕快照。 在此处输入图片说明

It will not reflect immediately in dashboard when you upload the apk file. 当您上传apk文件时,它不会立即反映在信息中心中。

They are supposed to be updated once every 24 hours. 它们应该每24小时更新一次。 If it's your first apk, then it will take some time to change it to published version. 如果这是您的第一个APK,那么将它更改为已发布版本将需要一些时间。

Moreover to track analytics, support device etc., it takes 24 hours to update. 此外,要跟踪分析,支持设备等,需要24小时进行更新。 Possibly you can check it by today night or tomorrow morning for your previous version which you uploaded. 可能您可以在今天晚上或明天早上检查上传的先前版本。

It's better to use Google analytics or flurry or any other analytics library to track instantly when user uses the app. 最好使用Google Analytics(分析)或flurry或任何其他分析库来在用户使用应用程序时立即进行跟踪。

I got the answer. 我得到了答案。 I have added an external library(JExcelApi). 我添加了一个外部库(JExcelApi)。 And that was using using log4j-1.2.16.jar and this was showing in native platform. 那是使用log4j-1.2.16.jar的,这在本机平台上显示出来。 That is why supported device was 0. When I removed this library. 这就是为什么支持的设备为0的原因。当我删除此库时。 Supported device is 12K+. 支持的设备为12K +。

在此处输入图片说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM