2012-10-10 40 views
0

我的APK是活動此應用程序可供超過0裝置

我只是發表我的應用程序,當我去Play商店網頁,它指出我的應用程序是不是與我的任何設備兼容:Sharelist

enter image description here

所以我檢查Play發佈的網頁,我得到了 「此應用程序可供超過0設備」 enter image description here

我沒有做任何事情對我的清單花哨:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.plumillonforge.android.sharelist" 
android:versionCode="1" 
android:versionName="1.0" > 

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

<uses-sdk 
    android:minSdkVersion="8" 
    android:targetSdkVersion="15" /> 

<supports-screens 
    android:smallScreens="true" 
    android:normalScreens="true" 
    android:largeScreens="true" 
    android:anyDensity="true"/> 

<application 
    android:icon="@drawable/launcher" 
    android:label="@string/app_name" 
    android:theme="@style/SharelistTheme"> 

    <activity 
     android:name=".PagerActivity"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 
      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 

     <intent-filter> 
      <action android:name="android.intent.action.VIEW" /> 
      <category android:name="android.intent.category.DEFAULT" /> 
      <category android:name="android.intent.category.BROWSABLE" /> 
      <data android:scheme="file" /> 
      <data android:mimeType="*/*" /> 
      <data android:pathPattern=".*\\.shl" /> 
      <data android:pathPattern=".*\\..*\\.shl" /> 
      <data android:pathPattern=".*\\..*\\..*\\.shl" /> 
      <data android:pathPattern=".*\\..*\\..*\\..*\\.shl" /> 
      <data android:host="*" /> 
     </intent-filter> 

     <intent-filter> 
      <action android:name="android.intent.action.SEND" /> 
      <category android:name="android.intent.category.DEFAULT" /> 
      <data android:mimeType="text/plain" /> 
     </intent-filter> 
    </activity> 

    <activity 
     android:name=".ListActivity" 
     android:label="@string/title_activity_apps_list" /> 

    <activity 
     android:name=".fragment.FilePickerActivity" 
     android:label="@string/choose_shl_file" /> 

    <activity android:name="com.google.ads.AdActivity" 
     android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/> 
</application> 
</manifest> 
+1

你是什麼意思android.hardware.touchscreen功能?是系統默認的,否則你添加了一些功能。 – TNR

+0

我沒有添加任何東西,這是一個默認功能 –

回答

0

我發現了問題

這是谷歌AdMob聯播jar文件包括造成這個怪異的行爲:我在SRC創建的文件夾/加罐子,包括它在我的構建路徑

看來構建是OKI但Play商店糊塗了

所以我刪除罐子和構建路徑,然後在我的項目根目錄中創建一個庫/文件夾,然後將其添加到構建路徑和現在的工作:)

您無法在src /文件夾(或任何兒童文件夾)中添加jar文件並將其添加到您的構建路徑中

0

喂添加以下代碼清單文件,並給予一試。它應該工作。

<uses-feature android:name="android.hardware.touchscreen" android:required="false" /> 

並嘗試刪除Play商店發佈頁面中的複製保護。

只是試一試。

+0

Thx我也看到了這個解決方案,但它不起作用,我也沒有複製保護。我找到了解決方案,我會發布答案 –

相關問題