我的APK是活動此應用程序可供超過0裝置
我只是發表我的應用程序,當我去Play商店網頁,它指出我的應用程序是不是與我的任何設備兼容:Sharelist
所以我檢查Play發佈的網頁,我得到了 「此應用程序可供超過0設備」
我沒有做任何事情對我的清單花哨:
<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>
你是什麼意思android.hardware.touchscreen功能?是系統默認的,否則你添加了一些功能。 – TNR
我沒有添加任何東西,這是一個默認功能 –