<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: License Runtime Lite in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/license-runtime-lite/m-p/1588431#M13328</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have you set API Key?&lt;/P&gt;&lt;P&gt;API key is a permanent token that grants your application access to ArcGIS location services.&amp;nbsp;Create a new API key or access existing API keys from your ArcGIS for Developers&amp;nbsp;dashboard (&lt;A href="https://links.esri.com/arcgis-api-keys" target="_blank"&gt;https://links.esri.com/arcgis-api-keys&lt;/A&gt;).&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// Provide an access token for your app (usually when the app starts).
Esri.ArcGISRuntime.ArcGISRuntimeEnvironment.ApiKey = "YOUR_ACCESS_TOKEN";

// Create a map with an ArcGIS basemap.
var map = new Map(BasemapStyle.ArcGISNavigation);

// If preferred, you can provide a key directly for the basemap.
//map.Basemap.ApiKey = "YOUR_ACCESS_TOKEN";&lt;/LI-CODE&gt;&lt;P&gt;Or it could be done&amp;nbsp;MauiApp builder:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;        var builder = MauiApp.CreateBuilder();
        builder
            .UseMauiApp&amp;lt;App&amp;gt;()
            .ConfigureFonts(fonts =&amp;gt;
            {
                fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
                fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
            })
            .UseArcGISRuntime(config =&amp;gt; config
             .UseLicense("[Your ArcGIS Maps SDK License key]")
              .UseApiKey("[Your ArcGIS location services API Key]")
               .ConfigureAuthentication(auth =&amp;gt; auth
                   .UseDefaultChallengeHandler() // Use the default authentication dialog
                // .UseOAuthAuthorizeHandler(myOauthAuthorizationHandler) // Configure a custom OAuth dialog
 
              )
            );

        return builder.Build();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2025 06:24:57 GMT</pubDate>
    <dc:creator>GKmieliauskas</dc:creator>
    <dc:date>2025-02-24T06:24:57Z</dc:date>
    <item>
      <title>License Runtime Lite</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/license-runtime-lite/m-p/1587996#M13324</link>
      <description>&lt;P&gt;Dears,&lt;/P&gt;&lt;P&gt;I need help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, I can't understand about how use license runtime lite to create mobile application on&amp;nbsp;Maui.&lt;/P&gt;&lt;P&gt;I read this -&amp;gt;&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/license-and-deployment/get-a-license/#your-runtime-lite-license-string" target="_blank"&gt;Get a license | ArcGIS Maps SDK for .NET | Esri Developer&lt;/A&gt;&amp;nbsp;and I can get&amp;nbsp;&lt;SPAN&gt;Runtime Lite license string:&amp;nbsp;runtimelite,1000,rudXXXXXX,none,xyzxyzxyzxyzxyz But this license string doesn't work , map is empty in application.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would like to create easy app and maybe to publish to play market so I'd like to understand how I should move forward and&amp;nbsp;of course use this platform for free in&amp;nbsp;play market.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you very much for your support.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best regards, Azamat&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2025 15:31:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/license-runtime-lite/m-p/1587996#M13324</guid>
      <dc:creator>Azamat</dc:creator>
      <dc:date>2025-02-21T15:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: License Runtime Lite</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/license-runtime-lite/m-p/1588431#M13328</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have you set API Key?&lt;/P&gt;&lt;P&gt;API key is a permanent token that grants your application access to ArcGIS location services.&amp;nbsp;Create a new API key or access existing API keys from your ArcGIS for Developers&amp;nbsp;dashboard (&lt;A href="https://links.esri.com/arcgis-api-keys" target="_blank"&gt;https://links.esri.com/arcgis-api-keys&lt;/A&gt;).&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// Provide an access token for your app (usually when the app starts).
Esri.ArcGISRuntime.ArcGISRuntimeEnvironment.ApiKey = "YOUR_ACCESS_TOKEN";

// Create a map with an ArcGIS basemap.
var map = new Map(BasemapStyle.ArcGISNavigation);

// If preferred, you can provide a key directly for the basemap.
//map.Basemap.ApiKey = "YOUR_ACCESS_TOKEN";&lt;/LI-CODE&gt;&lt;P&gt;Or it could be done&amp;nbsp;MauiApp builder:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;        var builder = MauiApp.CreateBuilder();
        builder
            .UseMauiApp&amp;lt;App&amp;gt;()
            .ConfigureFonts(fonts =&amp;gt;
            {
                fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
                fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
            })
            .UseArcGISRuntime(config =&amp;gt; config
             .UseLicense("[Your ArcGIS Maps SDK License key]")
              .UseApiKey("[Your ArcGIS location services API Key]")
               .ConfigureAuthentication(auth =&amp;gt; auth
                   .UseDefaultChallengeHandler() // Use the default authentication dialog
                // .UseOAuthAuthorizeHandler(myOauthAuthorizationHandler) // Configure a custom OAuth dialog
 
              )
            );

        return builder.Build();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 06:24:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/license-runtime-lite/m-p/1588431#M13328</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2025-02-24T06:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: License Runtime Lite</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/license-runtime-lite/m-p/1588782#M13331</link>
      <description>&lt;P&gt;Yes as&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133" target="_self"&gt;&lt;SPAN class=""&gt;GKmieliauskas&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;says there are also API keys.&amp;nbsp;&lt;BR /&gt;Basically the license key licenses the use of the SDK and removes the watermark from the map control.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;The API key is only needed if you want to use ArcGIS Location Services (like the esri vector basemaps etc). So quite often you'll need both. (or if you sign in as a portal user first, the api key won't be needed if that user has access those services)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 23:40:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/license-runtime-lite/m-p/1588782#M13331</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2025-02-24T23:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: License Runtime Lite</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/license-runtime-lite/m-p/1592734#M13356</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1052"&gt;@dotMorten_esri&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your answers,&amp;nbsp;your answers are detailed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 14:35:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/license-runtime-lite/m-p/1592734#M13356</guid>
      <dc:creator>Azamat</dc:creator>
      <dc:date>2025-03-06T14:35:25Z</dc:date>
    </item>
  </channel>
</rss>

