<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Aurel Statnik</title>
    <description>The latest articles on DEV Community by Aurel Statnik (@statnyk).</description>
    <link>https://dev.to/statnyk</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F891904%2F6b4a000c-f89d-4cab-a3c0-04287db73c1f.jpeg</url>
      <title>DEV Community: Aurel Statnik</title>
      <link>https://dev.to/statnyk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/statnyk"/>
    <language>en</language>
    <item>
      <title>Seeking Solution: Integrating OpenStreetMaps into Expo Without Payment Tie-Ins</title>
      <dc:creator>Aurel Statnik</dc:creator>
      <pubDate>Mon, 13 Nov 2023 12:32:47 +0000</pubDate>
      <link>https://dev.to/statnyk/seeking-solution-integrating-openstreetmaps-into-expo-without-payment-tie-ins-p2o</link>
      <guid>https://dev.to/statnyk/seeking-solution-integrating-openstreetmaps-into-expo-without-payment-tie-ins-p2o</guid>
      <description>&lt;p&gt;Hello Dev.to community! 🌍&lt;/p&gt;

&lt;p&gt;I'm facing the challenge of integrating &lt;strong&gt;OpenStreetMaps&lt;/strong&gt; into my Expo application and I'm in need of a solution that doesn't require linking payment details. Unfortunately, Google Maps and Mapbox are ruled out due to their insistence on payment card registration during sign-up. I believe there are seasoned developers here who can offer valuable insights.&lt;/p&gt;

&lt;p&gt;If you have experience with integrating OpenStreetMaps into Expo or know of alternative solutions that might suit my needs, please share your expertise. I would greatly appreciate any information or advice on this topic.&lt;/p&gt;

&lt;p&gt;Thanks in advance for your help! 🙏&lt;/p&gt;

</description>
      <category>expo</category>
      <category>osm</category>
      <category>help</category>
      <category>development</category>
    </item>
    <item>
      <title>Issue with MapView in Expo: Works in Dev Mode but Crashes in Production</title>
      <dc:creator>Aurel Statnik</dc:creator>
      <pubDate>Thu, 09 Nov 2023 13:13:41 +0000</pubDate>
      <link>https://dev.to/statnyk/issue-with-mapview-in-expo-works-in-dev-mode-but-crashes-in-production-5d6d</link>
      <guid>https://dev.to/statnyk/issue-with-mapview-in-expo-works-in-dev-mode-but-crashes-in-production-5d6d</guid>
      <description>&lt;p&gt;Facing a peculiar issue here and turning to the community for some guidance. Everything seems smooth in dev mode, but when I build for production or create an apk file, opening the map leads to a crash. Strangely, this issue is Android-specific; on iOS, it works like a charm.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🤔 Anybody else come across a similar situation? How did you tackle it?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here's a quick rundown of the problem:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Scenario:&lt;/strong&gt; Using Expo with MapView in the project.&lt;br&gt;
&lt;strong&gt;Issue:&lt;/strong&gt; All good in dev mode, but crashes in production or when building an apk.&lt;br&gt;
&lt;strong&gt;iOS vs. Android:&lt;/strong&gt; Problem only occurs on Android; iOS is unaffected.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;MapView&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;Marker&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;react-native-maps&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="c1"&gt;// ...&lt;/span&gt;

&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;MapView&lt;/span&gt;
  &lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;styles&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;map&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="nx"&gt;region&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;mapRegion&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="nx"&gt;loadingEnabled&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="nx"&gt;loadingBackgroundColor&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;Colors&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;background&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="nx"&gt;loadingIndicatorColor&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;Colors&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;primary&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;primary_main&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="nx"&gt;onPress&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;onPressSetGeoInfo&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;Marker&lt;/span&gt;
    &lt;span class="nx"&gt;coordinate&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;mapRegion&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;showMarker&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;marker&lt;/span&gt;&lt;span class="p"&gt;)}&lt;/span&gt;
    &lt;span class="nx"&gt;image&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;require&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;../../assets/location_on.png&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)}&lt;/span&gt;
  &lt;span class="sr"&gt;/&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/MapView&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Appreciate any advice or insights! Maybe someone has already dealt with this and knows what's up.&lt;/p&gt;

&lt;p&gt;🙌 Thanks in advance for your support and ideas! 🚀&lt;/p&gt;

</description>
      <category>bug</category>
      <category>reactnative</category>
      <category>expo</category>
      <category>programming</category>
    </item>
    <item>
      <title>How to create chat app in React Native using Expo or RN CLI?</title>
      <dc:creator>Aurel Statnik</dc:creator>
      <pubDate>Mon, 25 Jul 2022 09:00:07 +0000</pubDate>
      <link>https://dev.to/statnyk/how-to-create-chat-app-in-react-native-using-expo-or-rn-cli-345h</link>
      <guid>https://dev.to/statnyk/how-to-create-chat-app-in-react-native-using-expo-or-rn-cli-345h</guid>
      <description>&lt;p&gt;Who had experience in developing a chat application with a webcam, what libraries did you use?&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>reactnative</category>
      <category>mobile</category>
      <category>help</category>
    </item>
  </channel>
</rss>
