Hacker News new | ask | show | jobs
by pjmlp 4733 days ago
This is what puts me away from using Qt for Android development.

One of the advices of Google IO this year was to try to keep applications small.

According to Google bigger applications are the ones that get deleted first when space gets short. Most of the time are never reinstalled.

1 comments

I consider the memory footprint even more important, though it is hard to find strong relations between APK size and memory use -- except for the "looks like the dev did not care at all" rule.

Regarding APK size, you can do miracles by using ProGuard (even with obfuscation disabled), though it will obviously fail for native code, like in the Qt case.

I just do hobby development on Android.

Day job is actually JVM/.NET/C++ enterprise applications.

Nonetheless, even my device is not swimming on free space, so I do have some care with it. And given my age, I am used to the time when every byte counted.

On my hobby development I tend to do a mix of Java/C++, depending how portable I want to do it.