New Google requirements in 2018 and 2019
-
Google recently posted new requirements to Android apps.
https://android-developers.googleblog.com/2017/12/improving-app-security-and-performance.html
Anybody knows? - How security metadata inclusion can affect apps already published on Google Play?
Another question - How future changes will be supported by Qt? Especially requirement to support both 32 and 64 bit architectures in one app. -
Hi,
That’s a question you should bring to the Qt Android mailing list. You’ll find Qt’s Android port developers/maintainers. This forum is more user oriented.
-
@Gourmet
ad 1 (recent API): This is only related if the app should be published in the Play store. Qt supports API level 9 upwards. So it's in the responsibility of the developer to meat this criteria.
EDIT: minimum supported version is Android 5.0 (API level 21) with Qt 5.13 onwardsad 2 (64-bit support): this is actually the most interesting but by far no show stopper. Also this doesn't happen before August 2019 . So plenty of time ahead for the Trolls to come up with a solution. Just the necessary build steps need to be added to QtCreator's toolchain to also bundle the 64-bit libraries. Unfortunately this means that Qt Android apps increase even more in size! I am looking forward how this will be addressed.
ad 3 (security metadata): as written this is done by Google and needs no interaction by the developer. So nothing to worry about.
-
up
Any news about 32/64 bit support before Aug 19 in Qt?
I have remade all my apps from ant to gradle and published them with target API level 26. All works fine now but I am worry about 64 bits support. I will need about 2-3 weeks to just reassemble and publish all my 21 apps. Now I am working on new one. Are there at lease gossip about this feature in Qt?
-
@Gourmet
64bit android support/packages were added with Qt 5.12 -
up
I'm gonna create 32/64 bit versions as Google required. But I cannot find any docs in Internet - how to compile and build two-version packages in QtCreator. Is this simple and transparent like a click-click operating? Did anybody here create similar apps from old 32-but only apps? Is there any good description how do that?
-
Hi,
There's also an excellent blog article about that matter.
-
I was too much optimistic... Little weird in JDK versions. On my Linux AMD64 workstation with Kubuntu64 there are installed java-7-openjdk-amd64 and java-8-oracle. And link default-java to java-7-openjdk-amd64 exists. I do not remember why it is not java-8-oracle - may be I had some problems with it 3 years ago. Until now I developed and distributed ARM32 applications for Android. Do I need install some other JDK to this workstation to assemble ARM64 apps? Or it may be only better replace default-java by java-8-openjdk-amd64? Or I need ARM64 JDK from Oracle installed near?