没有受支持的设备 - Google Play

时间:2016-08-05 19:44:59

标签: android google-play android-manifest

这是我在Google商店中的第一个应用。当我开始这个项目时,我自动设置包名“example”。我尝试更改包名后但“重构”没有用(android studio)。在我将gradle“example”上的名字改为“bilgiyarisi”之后,改变似乎只是在gradle中。它似乎与新的包名(bilgiyarisi)在商店。

enter image description here

我认为问题与此有关。但是我提出了清单和gradle代码。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.dell.korean"
    android:versionCode="1"
    android:versionName="1.0">

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>


<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <meta-data android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <activity android:name=".MainActivity2">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".MainActivity10" />
    <activity android:name=".MainActivity11" />
    <activity android:name=".SoruActivity"/>
    <activity android:name=".mola" />
    <activity android:name=".Bilgi"></activity>

    <activity android:name="com.google.android.gms.ads.AdActivity"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
        android:theme="@android:style/Theme.Translucent" />

</application>
</manifest> 

这里是gradle ..

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "24.0.0"
    defaultConfig {
        applicationId "com.bilgiyarisi.dell.korean"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.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 'org.apache.directory.studio:org.apache.commons.lang:2.6'
    compile 'com.google.android.gms:play-services-ads:9.4.0'
}

现在我需要从商店中删除应用吗?我怎么理解这个问题解决了还是没解决?当我更改此代码时,是否必须连续尝试上传apk,我会等待2-3个小时才能看到结果吗?我不知道我需要做什么。

0 个答案:

没有答案
相关问题