发布我的第一个Android应用程序在Playstore上支持Android设备0

时间:2016-07-05 19:11:25

标签: android android-studio

我在Android Studio中开发了我的第一个Android应用程序。我开发了一个简单的flashLight应用程序。它在多个设备上运行良好,但是当我将它发布到Playstore时会出现兼容性问题。请帮帮我。

  

支持的Android设备= 0设备

Mainfest.xml文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.dhairya.fastflashlight">

    <uses-permission android:name="android.permission.CAMERA"></uses-permission>
    <uses-feature android:name="android.hardware.Camera"></uses-feature>

    <supports-screens
        android:largeScreens="true"
        android:normalScreens="true"
        android:requiresSmallestWidthDp="720"
        android:resizeable="true"
        android:smallScreens="true"
        android:xlargeScreens="true" />


    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_flash"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name="dc.suvy.dhairya.fastflashlight.Flashlight">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

构建Gradle

    android {
    compileSdkVersion 23
    buildToolsVersion "24.0.0"
    defaultConfig {
        applicationId "dc.suvy.dhairya.fastflashlight"
        minSdkVersion 9
        targetSdkVersion 9
        versionCode 2
        versionName '2.0'
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
}
dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'commons-io:commons-io:2.4'
}

3 个答案:

答案 0 :(得分:0)

更改

    minSdkVersion 9
    targetSdkVersion 9

    minSdkVersion 9
    targetSdkVersion 23

还要交叉检查你是否确实需要这些(如果你没有充分理由保留它,只需删除它):

    <supports-screens
    android:largeScreens="true"
    android:normalScreens="true"
    android:requiresSmallestWidthDp="720"
    android:resizeable="true"
    android:smallScreens="true"
    android:xlargeScreens="true" />

答案 1 :(得分:0)

您的目标SDK应该始终是您可以使用的最新SDK版本。所以只需将Build gradle更改为。

   minSdkVersion 9
   targetSdkVersion 23

答案 2 :(得分:0)

有时,原因是您引用的第三方库。如果你能找到它是哪一个,你可以删除它,你可以解决问题。

尝试删除

compile 'commons-io:commons-io:2.4'