Adam
Adam

Reputation: 1086

Will code built with Android's NDK run on ART as it does on Dalvik?

With KitKat, Android now has a substitute for the Dalvik VM: ART. Are there any differences in compatibility when running NDK code on ART vs Dalvik?

Upvotes: 5

Views: 1082

Answers (1)

Doug-W
Doug-W

Reputation: 1328

When the Nexus 5 and KitKat came out we set one of our QA devices to ART exclusively. Since then every release of our game has been tested with it and we've found no bugs that are exclusive to ART. Our game is almost entirely NDK code with Java being used for text rendering, and platform specific SDKs. (IAP, Achievements, 3rd party SDKs like Flurry etc...)

Upvotes: 4

Related Questions