Reputation: 115
I'm trying to run ar core sample on avd, but face this message: "The application requires the latest version of ARCore". I'm trying to run on Google Pixel2 emulator with API 27, everything is up to date. The android docs say it is possible, but what am I doing wrong?
Upvotes: 0
Views: 155
Reputation: 23
Try using google PIXEL with API 28(or higher) and install ARCore x86 apk for emulators or download it form here . Use this link for more help.
Upvotes: 0
Reputation: 540
You need to install the ARCore x86 for emulator apk from the ARCore GitHub repository.
You can then drag the downloaded apk onto the running emulator, or you can run:
adb install -r ARCore_1_2_x86_for_emulator.apk
https://developers.google.com/ar/develop/java/emulator#update_arcore
Upvotes: 3