2013-07-01 74 views
2

我需要一些幫助,爲什麼我的應用程序與某些三星設備,如S III,Galaxy Note的I和II和Galaxy Tab的2 10.1Android應用程序與某些三星設備

屏幕兼容兼容 正常 大 XLARGE

在我manifiest我有這個

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


<uses-permission android:name="android.permission.CALL_PHONE" /> 
<uses-permission android:name="com.coffeeandcookies.name.permission.C2D_MESSAGE" /> 
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> 
<uses-permission android:name="android.permission.WAKE_LOCK" /> 
<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
<uses-permission android:name="android.permission.READ_PHONE_STATE" /> 
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 
<uses-permission android:name="android.permission.GET_ACCOUNTS" /> 

感謝!!!!!!!!!!!!!!

+0

這是開發控制檯http://twitpic.com/d05ak8/full的圖片。如果您需要更多信息,請詢問我。非常感謝! – benoffi7

回答

0

根據Permissions that Imply Feature Requirements頁面,android.permission.CALL_PHONE意味着android.hardware.telephony,這當然是Galaxy Tab 2 10.1所沒有的。確保不認爲被要求電話加入下面一行到你的清單:

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

這應該讓你與平板設備兼容。

+0

在我manifiest我有這樣的: <使用特徵 機器人:名字= 「android.hardware.location.gps」 機器人:要求= 「假」/> <使用特徵 機器人:名字=「機器人.hardware.location」 機器人:需要= 「假」/> <使用特徵 機器人:名稱= 「android.hardware.location.network」 機器人:需要= 「假」/> <使用特徵 android:name =「android.hardware.telephony」 android:required =「false」/> benoffi7

+0

奇怪的是SamsungGalaxy Tab II 7.0和SamsungGalaxy Tab在被允許列表中 – benoffi7

相關問題