Hello,
I am trying to add licence information to my UWP ESRI Runtime(100.5) app.
Below is my code of App.xaml.cs Initialize to configure it:
string clientId = "xyz";
string clientSecret = "yyy";
string licenseKey = "runtimelite,1000," + clientId + ",none," + clientSecret;
ArcGISRuntimeEnvironment.SetLicense(licenseKey);
ArcGISRuntimeEnvironment.Initialize();
Could someone please help me how to set it?
Many Thanks!