I'm using the code from the CppSamples/Layers/TileCacheLayer example from the arcgis-maps-sdk-samples-qt repo with my own Tile Package. When I populate the accessToken variable with an API token, I still get the "Licensed for Developer Use Only" message. Do I need to choose specific categories or approved items when generating the API key in order for an offline Tile Package to be displayed without the Developer Use warning?
The code looks like this (the API key string is just random here...) in main.cpp
const QString accessToken = QString(
"RANDOM9034175353gibberish"
"here_"
"andHERE_"
"835635765.AG1_IHe897yn");
Esri::ArcGISRuntime::ArcGISRuntimeEnvironment::setApiKey(accessToken);
Thanks!