<?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: New Maven repository location for ArcGIS Runtime in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/new-maven-repository-location-for-arcgis-runtime/m-p/1144496#M5682</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In the latest Android Studio, the maven is now shifted from the 'build.gradle(Project Module)' to 'settings.gradle'.&lt;BR /&gt;Kindly update the same in your latest code.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 16 Feb 2022 04:58:02 GMT</pubDate>
    <dc:creator>CodeDynode</dc:creator>
    <dc:date>2022-02-16T04:58:02Z</dc:date>
    <item>
      <title>New Maven repository location for ArcGIS Runtime</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/new-maven-repository-location-for-arcgis-runtime/m-p/1001119#M5367</link>
      <description>&lt;P&gt;If you use the maven repository &lt;STRONG&gt;esri.bintray.com&lt;/STRONG&gt; in your build scripts, you will need to update these to reference our new repository &lt;STRONG&gt;esri.jfrog.io.&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;maven &lt;SPAN&gt;{&lt;/SPAN&gt;
  url &lt;SPAN&gt;'https://esri.jfrog.io/artifactory/arcgis'&lt;/SPAN&gt;
&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Full details of this are in this&amp;nbsp;&lt;A href="https://www.esri.com/arcgis-blog/products/developers/announcements/announcement-to-developers-using-arcgis-runtime-sdks-for-android-and-java" target="_self"&gt;Blog post&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone has any issues with this new repository, please let us know.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 09:05:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/new-maven-repository-location-for-arcgis-runtime/m-p/1001119#M5367</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2020-11-13T09:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: New Maven repository location for ArcGIS Runtime</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/new-maven-repository-location-for-arcgis-runtime/m-p/1144496#M5682</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In the latest Android Studio, the maven is now shifted from the 'build.gradle(Project Module)' to 'settings.gradle'.&lt;BR /&gt;Kindly update the same in your latest code.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 04:58:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/new-maven-repository-location-for-arcgis-runtime/m-p/1144496#M5682</guid>
      <dc:creator>CodeDynode</dc:creator>
      <dc:date>2022-02-16T04:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: New Maven repository location for ArcGIS Runtime</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/new-maven-repository-location-for-arcgis-runtime/m-p/1383742#M6163</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (271).png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/95093iDF8863CB3310924B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot (271).png" alt="Screenshot (271).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am experiencing an issue with my build.gradle.kts file for my project, and I would appreciate your assistance in resolving this problem. When I add settings for a Maven repository in the build.gradle.kts file as follows:&lt;/P&gt;&lt;P&gt;```kotlin&lt;BR /&gt;pluginManagement {&lt;BR /&gt;repositories {&lt;BR /&gt;google()&lt;BR /&gt;mavenCentral()&lt;BR /&gt;maven {&lt;BR /&gt;url '&lt;A href="https://esri.jfrog.io/artifactory/arcgis" target="_blank"&gt;https://esri.jfrog.io/artifactory/arcgis&lt;/A&gt;'&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;I encounter an error that says "Unexpected tokens (use ';' to separate expressions on the same line)".&lt;/P&gt;&lt;P&gt;I have searched online and attempted to understand the reason behind this error, but I have not been successful in resolving the issue.&lt;/P&gt;&lt;P&gt;Could you please help me examine the code and provide any suggestions or guidance to resolve this error?&lt;/P&gt;&lt;P&gt;I have attached the complete code for the build.gradle.kts file of my project for your reference:&lt;/P&gt;&lt;P&gt;```kotlin&lt;BR /&gt;dependencyResolutionManagement {&lt;BR /&gt;repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)&lt;BR /&gt;repositories {&lt;BR /&gt;google()&lt;BR /&gt;mavenCentral()&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;rootProject.name = "ProjectCol24"&lt;BR /&gt;include(":app")&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;Thank you in advance for your assistance.&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;abd-rahman&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2024 09:07:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/new-maven-repository-location-for-arcgis-runtime/m-p/1383742#M6163</guid>
      <dc:creator>Abd-elrahman</dc:creator>
      <dc:date>2024-02-17T09:07:17Z</dc:date>
    </item>
  </channel>
</rss>

