![]() |
Frage bezüglich Playstore
Liste der Anhänge anzeigen (Anzahl: 1)
Hi,
ich habe gerade ein Problem mit dem Playstore. Laut Google ist meine Anwendung nicht kompatibel zu meinem Nexus Tablet. Das blöde ist nur, dass ich damit ja quasi die App getestet habe. Hat eventuell jemand eine Idee diesbezüglich? Christian |
AW: Frage bezüglich Playstore
Dein manifest ist nicht korrekt. Dort ist bestimmt ein feature angegeben das nicht unterstützt wird. Adb ignoriert das, der Play Store aber nicht. Könnte sein dass Du die Camera drin hast.
|
AW: Frage bezüglich Playstore
Danke, darüber habe ich auch nachgedacht. Mein Manifest schaut übrigens so aus:
Code:
Christian
<?xml version="1.0" encoding="utf-8"?>
<!-- BEGIN_INCLUDE(manifest) --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.cmuv.Alignment" android:versionCode="4" android:versionName="1.1.0"> <!-- This is the platform API where NativeActivity was introduced. --> <uses-sdk android:minSdkVersion="9" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <application android:persistent="False" android:restoreAnyVersion="False" android:label="Alignment" android:installLocation="preferExternal" android:debuggable="False" android:largeHeap="False" android:icon="@drawable/ic_launcher" android:theme="@android:style/Theme.NoTitleBar"> <!-- Our activity is a subclass of the built-in NativeActivity framework class. This will take care of integrating with our NDK code. --> <activity android:name="com.embarcadero.firemonkey.FMXNativeActivity" android:label="Alignment" android:configChanges="orientation|keyboardHidden"> <!-- Tell NativeActivity the name of our .so --> <meta-data android:name="android.app.lib_name" android:value="Alignment" /> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name="com.embarcadero.firemonkey.notifications.FMXNotificationAlarm" /> </application> </manifest> <!-- END_INCLUDE(manifest) --> |
AW: Frage bezüglich Playstore
Ich habe das gleiche Problem mit meiner App
![]() ![]() |
AW: Frage bezüglich Playstore
Die Berechtigungen ziehen teilweise feature requirements nach sich. ACCESS_FINE_LOCATION benötigt z.b. GPS.
|
AW: Frage bezüglich Playstore
Und manchmal isses auch schlicht falsch. Bei mir wurde im Web-Store nicht kompatibel angezeigt, im Store auf dem Gerät selber ging es aber.
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 20:38 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz