[VTM] MapView class not found (android package) #959
-
Hi, I'm trying to implement simple MapView
And added a MapView in xml:
However it seem it cannot find the package:
Even directly in the code it seem it cannot find/import the The gradle sync execute correctly, no error, I have tried to clean cache but nothing helped Compile SDK: 32 Did I miss a package for get MapView ? Regards |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Android According to the integration guide, the dependencies seem correct. Besides the GettingStarted example, you can also check the other samples in vtm-android-example. |
Beta Was this translation helpful? Give feedback.
-
Can confirm the same behaviour on: Compile Sdk 33 Seems to started happening only on the most recent grade versions. The solution is to change the order, just doing this order will fix it:
Natives first! |
Beta Was this translation helpful? Give feedback.
-
In IDEA with Gradle 7.4 and Android Gradle plugin 7.2.2 the following works:
(similar order to vtm-android-example/build.gradle) |
Beta Was this translation helpful? Give feedback.
Can confirm the same behaviour on:
Compile Sdk 33
Build Tools 33.0.0
Gradle Plugin 7.3.1
Gradle Version 7.5.1
Seems to started happening only on the most recent grade versions.
The solution is to change the order, just doing this order will fix it:
Natives first!
Probably should add this info in the guides?