Android: Google 开发者控制台显示支持的设备 0?
Android: Google Developer Console shows supported devices 0?
在开发者控制台中显示为支持的设备 0。
我试着去掉 screenOrientation="portrait"。
会不会是.MainActivity?
我尝试过的:
正在更改权限。
改变 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>
是
android.hardware.camera.autofocus
android.hardware.camera.flash
没有
android.hardware.autofocus
android.hardware.flash
在开发者控制台中显示为支持的设备 0。 我试着去掉 screenOrientation="portrait"。 会不会是.MainActivity?
我尝试过的:
正在更改权限。 改变 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>
是
android.hardware.camera.autofocus
android.hardware.camera.flash
没有
android.hardware.autofocus
android.hardware.flash