My unity Project is work in Game and Scene map but when i build it for android and install on quest 2 it dose not show map (base and elevation).
this is my code for handle offline data ,I copy 2 tpk file in location :
if (Application.platform == RuntimePlatform.Android)
{
var basemap = new Esri.GameEngine.Map.ArcGISBasemap(Application.persistentDataPath + "/world.tpk", APIKey);
var Elevation = new Esri.GameEngine.Map.ArcGISMapElevation(new Esri.GameEngine.Elevation.ArcGISImageElevationSource(Application.persistentDataPath + "/ShirazDem.tpk", "Terrain 3D", ""));
arcGISMapComponent.View.Map.Basemap = basemap;
arcGISMapComponent.View.Map.Elevation = Elevation;
}