简体   繁体   English

Android应用程序未在市场上显示

[英]Android application not displaying in market

I have publish an application on market but is unable to see it on the market website. 我已经在市场上发布了一个应用程序,但是在市场网站上看不到它。 I hear that is may be due to the /lib in the folder. 我听说可能是由于文件夹中的/ lib。 I got the /lib and have got the admob library in it. 我得到了/ lib,并且其中有admob库。 I need it. 我需要它。 If i delete it, there would be an error. 如果我删除它,将出现错误。 And changing from my current <uses-sdk android:minSdkVersion="3"/> to <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" /> doesn't help either. 从我当前的<uses-sdk android:minSdkVersion="3"/>更改为<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />都无济于事。 adding the extra targetSdkVersion just creates an error. 添加额外的targetSdkVersion只会产生一个错误。 Tried a direct url link also didn't work. 尝试了直接网址链接也没有用。 Any solution for it? 有什么解决办法吗?

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="calc.calc"
  android:versionCode="1"
  android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".Calculator"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="com.google.ads.AdActivity" 
          android:configChanges="keyboard|keyboardHidden|orientation"/>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 
<uses-sdk android:minSdkVersion="3"
/>

If you have a green checkmark and can see a label with the text saying "Published" in the top right corner of your app description in the Android Market Console (like here ) then you may just have to wait some time. 如果您有一个绿色的选中标记,并且可以在Android Market控制台(如此 )中在应用说明的右上角看到带有“已发布”文字的标签,那么您可能只需要等待一段时间。

In my case, app upgrades are not visible to all of the users instantly. 就我而言,并不是所有用户都能立即看到应用程序升级。

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

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