Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Cross-Platform-Entwicklung (https://www.delphipraxis.net/91-cross-platform-entwicklung/)
-   -   Frage bezüglich Playstore (https://www.delphipraxis.net/180399-frage-bezueglich-playstore.html)

CHackbart 17. Mai 2014 19:39


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

Union 17. Mai 2014 22:10

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.

CHackbart 18. Mai 2014 08:48

AW: Frage bezüglich Playstore
 
Danke, darüber habe ich auch nachgedacht. Mein Manifest schaut übrigens so aus:
Code:
<?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) -->
Christian

RWarnecke 18. Mai 2014 19:40

AW: Frage bezüglich Playstore
 
Ich habe das gleiche Problem mit meiner App Code-Orakel Online. Ich habe dazu etwas gelesen, dass man die unterstützen Screenformate in der Manifest-Datei angeben muss. Nur weiß ich leider nicht wie.

Union 18. Mai 2014 21:11

AW: Frage bezüglich Playstore
 
Die Berechtigungen ziehen teilweise feature requirements nach sich. ACCESS_FINE_LOCATION benötigt z.b. GPS.

mquadrat 19. Mai 2014 06:57

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