[Interest] Making AppManifest compatible with device on Android
Nuno Santos
nunosantos at imaginando.pt
Sun Jul 12 12:13:41 CEST 2015
I forgot to mention that I always upload armeabi-v7a and x86 binaries and the later with a higher build version.
> On 12/07/2015, at 11:04, Nuno Santos <nunosantos at imaginando.pt> wrote:
>
> Hi,
>
> I’m releasing a phone version of my app. Before making it public i’m allowing beta testing for a close group.
>
> It happens that some of the users can’t install the app. Neither I can with my Bq Aquaris E5 FHD thru the Google Play portal. However, when I install and run the app thru QtCreator, it works perfectly.
>
> This is definitely a manifest problem but I can find what. Google Developer support said me the following:
>
> "I’ve looked into your issue and found that your app is not compatible with the Aquaris E5 due to a conflict in your app’s manifest with the following unsupported native platform: armeabi, armeabi-v7a.”
>
> They said the same thing about the Moto E phone. This kind of support is not able to tell me more. I think they are not developers themselves and only support guys.
>
> Does anyone had the same kind of problem here?
>
> There is another particular detail. I have two apps and one of them is already on phone. The app manifest is basically the same and I don’t have any kind of problem with that one.
>
> Below is the AndroidManifest. Does anyone sees anything wrong with it that might cause the kind of problems that I describe?
>
> Thanks in advance,
>
> With my best regards,
>
> Nuno
>
> <?xml version="1.0"?>
> <manifest package="com.imaginando.lk" xmlns:android="http://schemas.android.com/apk/res/android <http://schemas.android.com/apk/res/android>" android:versionName="1.1.0" android:versionCode="42" android:installLocation="auto">
> <application android:hardwareAccelerated="true" android:name="com.imaginando.lk.LKApplication" android:label="@string/app_name" android:icon="@drawable/icon" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" android:largeHeap="true">
> <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="com.imaginando.lk.LKActivity" android:label="@string/app_name" android:screenOrientation="sensorLandscape" android:launchMode="singleTask">
> <intent-filter>
> <action android:name="android.intent.action.MAIN"/>
> <category android:name="android.intent.category.LAUNCHER"/>
> </intent-filter>
> <meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
> <meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
> <meta-data android:name="android.app.repository" android:value="default"/>
> <meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
> <meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
> <!-- Deploy Qt libs as part of package -->
> <meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
> <meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
> <meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
> <!-- Run with local libs -->
> <meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
> <meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
> <meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
> <meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
> <meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
> <!-- Messages maps -->
> <meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
> <meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
> <meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
> <!-- Messages maps -->
>
> <!-- Splash screen -->
> <!--
> <meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/>
> -->
> <!-- Splash screen -->
> </activity>
> <receiver android:name="com.google.ads.conversiontracking.InstallReceiver" android:exported="true">
> <intent-filter>
> <action android:name="com.android.vending.INSTALL_REFERRER"/>
> </intent-filter>
> </receiver>
> <service android:name="com.parse.PushService"/>
> <receiver android:name="com.parse.ParseBroadcastReceiver">
> <intent-filter>
> <action android:name="android.intent.action.BOOT_COMPLETED"/>
> <action android:name="android.intent.action.USER_PRESENT"/>
> </intent-filter>
> </receiver>
> <receiver android:name="com.parse.ParsePushBroadcastReceiver" android:exported="false">
> <intent-filter>
> <action android:name="com.parse.push.intent.RECEIVE"/>
> <action android:name="com.parse.push.intent.DELETE"/>
> <action android:name="com.parse.push.intent.OPEN"/>
> </intent-filter>
> </receiver>
> <receiver android:name="com.parse.GcmBroadcastReceiver" android:permission="com.google.android.c2dm.permission.SEND">
> <intent-filter>
> <action android:name="com.google.android.c2dm.intent.RECEIVE"/>
> <action android:name="com.google.android.c2dm.intent.REGISTRATION"/>
> <category android:name="com.imaginando.lk"/>
> </intent-filter>
> </receiver>
> <meta-data android:name="com.parse.push.notification_icon" android:resource="@drawable/icon"/>
> </application>
> <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14"/>
> <compatible-screens>
> <!-- all normal size screens -->
> <screen android:screenSize="normal" android:screenDensity="ldpi"/>
> <screen android:screenSize="normal" android:screenDensity="mdpi"/>
> <screen android:screenSize="normal" android:screenDensity="hdpi"/>
> <screen android:screenSize="normal" android:screenDensity="xhdpi"/>
> <!-- all large size screens -->
> <screen android:screenSize="large" android:screenDensity="ldpi"/>
> <screen android:screenSize="large" android:screenDensity="mdpi"/>
> <screen android:screenSize="large" android:screenDensity="hdpi"/>
> <screen android:screenSize="large" android:screenDensity="xhdpi"/>
> <!-- all large size screens -->
> <screen android:screenSize="xlarge" android:screenDensity="ldpi"/>
> <screen android:screenSize="xlarge" android:screenDensity="mdpi"/>
> <screen android:screenSize="xlarge" android:screenDensity="hdpi"/>
> <screen android:screenSize="xlarge" android:screenDensity="xhdpi"/>
> </compatible-screens>
> <!--supports-screens android:smallScreens="false" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:requiresSmallestWidthDp="320"/-->
>
> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
> <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
> <uses-permission android:name="android.permission.INTERNET"/>
> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
> <uses-permission android:name="android.permission.WAKE_LOCK"/>
> <uses-permission android:name="android.permission.VIBRATE"/>
> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
> <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
> <uses-permission android:name="com.android.vending.BILLING"/>
> <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
>
> <!--
> IMPORTANT: Change "com.parse.starter.permission.C2D_MESSAGE" in the lines below
> to match your app's package name + ".permission.C2D_MESSAGE".
> -->
> <permission android:protectionLevel="signature" android:name="com.imaginando.lk.permission.C2D_MESSAGE"/>
> <uses-permission android:name="com.imaginando.lk.permission.C2D_MESSAGE"/>
>
> <uses-feature android:name="android.hardware.usb.host" android:required="false"/>
>
> </manifest>
>
> _______________________________________________
> Interest mailing list
> Interest at qt-project.org
> http://lists.qt-project.org/mailman/listinfo/interest
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.qt-project.org/pipermail/interest/attachments/20150712/136ad644/attachment.html>
More information about the Interest
mailing list