I have four updates of one of my apps modifying the AndroidManifest.xml
for if I get the tab "application compatible with all your devices" and I'm not successful the app's tab .
I have the following devices
- EEpad TF101 (ICE_CREAM_SANDWICH)
- ACER LIQUID Z200 (KITKAT)
- MOTO G (Lollipop)
Update
I've downloaded an SDKmin version, removed support-screen
and android:supportsRtl
I define the API for API 14+ devices
In all I can install it with AndroidStudio
but in the google play tab, I get it that is not compatible with any device.
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="pro.caminsderonda.app.caminsderonda"
android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:name="pro.caminsderonda.app.caminsderonda.MyApplication"
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name="pro.caminsderonda.app.caminsderonda.SplashActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:launchMode="singleInstance"
android:theme="@style/AppTheme.SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="pro.caminsderonda.app.caminsderonda.MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="caminsderonda.wordpress.com"
android:pathPrefix="/"
android:scheme="https" />
</intent-filter>
</activity>
<activity
android:name="pro.caminsderonda.app.caminsderonda.DetailedActivity"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name="pro.caminsderonda.app.caminsderonda.SettingsActivity"
android:label="@string/settings_activity_title" />
<activity
android:name="pro.caminsderonda.app.caminsderonda.AboutActivity"
android:label="@string/about_title_activity"
android:theme="@style/AppTheme.NoActionBar" />
</application>
</manifest>
And in the app.graddle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
defaultConfig {
applicationId 'app.caminsderonda.pro'
minSdkVersion 14
targetSdkVersion 23
versionCode 214
versionName '2.1.4'
signingConfig signingConfigs.config
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile 'eu.the4thfloor.volley:com.android.volley:2015.05.28'
compile 'com.android.support:palette-v7:23.4.0'
compile 'com.github.bumptech.glide:glide:3.6.1'
compile 'com.android.support:support-v4:23.4.0'
}
Inside the console in the device compatibility section
Compatibles: 10685
I have green check all my devices that I have, but still in the playstore tab that the user sees, I get "This application is not compatible with any of your devices" I have all associated to the same account.
It would be appreciated if you have a MotoG if you can visit the tab of the app from desktop with your associated account, so you can see if it shows you if it's compatible with your device
Leave me a comment here on how you are notified of compatibility.
UPDATE / SOLVED
I've finally found it because it informs me that my devices are not compatible.
If the app is paid, as Google does not let the same developer can buy it, that message appears.
My last test was to get a new app de pago
, and then put it gratis
While you are paying: This application is not compatible with any of your devices.
When I put it for FREE: This application is compatible with all your devices.
Thanks to all, for the answers, I have marked as correct the one that more compatible devices have offered me.