2015-01-10 112 views
0

在開發人員控制檯中顯示爲支持的設備0。 我試圖擺脫screenOrientation =「肖像」。 難道是.MainActivity?Android:Google開發者控制檯顯示支持的設備0?

我試過的東西:

更改權限。 更改MainActivity.java 更改activity_main和 fragment_main。

刪除所有權限&功能所需

我讀什麼:

http://developer.android.com/guide/practices/compatibility.html http://developer.android.com/guide/topics/manifest/manifest-intro.html

AndroidManifest.xml中

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.fewquery.orb" 
    android:versionCode="2" 
    android:versionName="2.0" > 

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

    <uses-permission android:name="android.permission.CAMERA" /> 
    <uses-permission android:name="android.permission.FLASHLIGHT" /> 

    <uses-feature android:name="android.hardware.camera" /> 
    <uses-feature android:name="android.hardware.flash"/> 
    <uses-feature android:name="android.hardware.autofocus"/> 

<application 
    android:allowBackup="true" 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" > 
    <activity 
     android:name=".MainActivity" 
     android:label="@string/app_name" > 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
     </activity> 
    </application> 

</manifest> 

回答

0

這是

android.hardware.camera.autofocus 

android.hardware.camera.flash 

android.hardware.autofocus 

android.hardware.flash 

documentation

+0

它的工作後,我改名吧! – King

相關問題