Im trying to set the alexa engine programmatically but it is failing every time
Used alexa provided API
example :- the api createDeviceInfoConfig() will return json format of the configuration, later that result of the api used to set to the engine by creating the object of the alexa engine but it is failing.
result = createDeviceInfoConfig("serialnum", "clientId", "prodID", "mfg_name", "description");
auto engine = aace::core::Engine::create();
bool configuredObj = engine->configure(result);
the configuredObj having the false value it means engine has rejected our configuration.