melvin
melvin

Reputation: 13

How to build my pure Java (Swing) apps for Android 5.0?

The Android 5.0 page states that 'Pure Java language apps run as 64-bit apps automatically'. I cannot find any documentation on how to configure/build my java apps for Android 5.0. Has anybody had any success with this yet?

Upvotes: 1

Views: 190

Answers (1)

ianhanniballake
ianhanniballake

Reputation: 199825

You're misinterpreting what they meant: they meant that Android applications without an NDK component built in C/C++ (i.e., built entirely on the Java based Android SDK) will automatically be compatible with 64 bit processor devices, not that desktop/Swing Java apps will run on Android devices.

Upvotes: 4

Related Questions