<?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: Kyoto Unknown</title>
    <description>The latest articles on DEV Community by Kyoto Unknown (@kyotounknown).</description>
    <link>https://dev.to/kyotounknown</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%2F3892327%2Fce437e92-d275-4ba6-82c8-0260a2bded2e.png</url>
      <title>DEV Community: Kyoto Unknown</title>
      <link>https://dev.to/kyotounknown</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kyotounknown"/>
    <language>en</language>
    <item>
      <title>How I built a free-forever iOS travel app with no backend, no analytics, and no ads (as a self-taught dev)</title>
      <dc:creator>Kyoto Unknown</dc:creator>
      <pubDate>Wed, 22 Apr 2026 11:25:01 +0000</pubDate>
      <link>https://dev.to/kyotounknown/how-i-built-a-free-forever-ios-travel-app-with-no-backend-no-analytics-and-no-ads-as-a-2c9b</link>
      <guid>https://dev.to/kyotounknown/how-i-built-a-free-forever-ios-travel-app-with-no-backend-no-analytics-and-no-ads-as-a-2c9b</guid>
      <description>&lt;p&gt;&lt;em&gt;No backend, no analytics, no paid tier, and the story of accidentally becoming a developer while building an app for Kyoto's under-visited 80%.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;Hi Dev.to. First time posting. Pretty nervous.&lt;/p&gt;

&lt;h2&gt;
  
  
  The short version
&lt;/h2&gt;

&lt;p&gt;I grew up in Kyoto. I built a free iOS app called Kyoto Unknown that lists the under-visited 80% of the city. Along the way I accidentally became a developer, and I'd love some honest feedback on what I've made.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;App:&lt;/strong&gt; &lt;a href="https://kyotounknown.com" rel="noopener noreferrer"&gt;kyotounknown.com&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;App Store:&lt;/strong&gt; &lt;a href="https://apps.apple.com/app/id6762438418" rel="noopener noreferrer"&gt;apps.apple.com/app/id6762438418&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The why (short, then I'll get to the dev stuff)
&lt;/h2&gt;

&lt;p&gt;Kyoto gets about 50 million visitors a year. The vast majority go to the same 10-15 places — Fushimi Inari, Arashiyama, Kinkaku-ji, turning them into queues. Meanwhile the other 80% of the city, full of genuinely excellent places, sits empty.&lt;/p&gt;

&lt;p&gt;I didn't want to write another "15 things to do in Kyoto" listicle — that just makes the problem worse. I wanted to build something that actually redistributes visitors: a small curated app with handpicked quiet places, offline-capable, chosen by locals.&lt;/p&gt;

&lt;p&gt;One thing I made a commitment to: &lt;strong&gt;it will always be free.&lt;/strong&gt; No ads, no tracking, no accounts, no paid tier, no affiliate links, ever. I wrote a binding commitment page at &lt;a href="https://kyotounknown.com/promise" rel="noopener noreferrer"&gt;kyotounknown.com/promise&lt;/a&gt; so I can't walk it back. Not a strategy, if the product is "please go to less-visited places", ads would flip the incentives toward whoever's paying.&lt;/p&gt;

&lt;h2&gt;
  
  
  The dev story
&lt;/h2&gt;

&lt;p&gt;Worth saying upfront: I am not a professional developer. I started this project with some basic programming familiarity and a lot of Googling.&lt;/p&gt;

&lt;p&gt;A few months in, I realised I was actually enjoying the dev side as much as the Kyoto side. Something about having a specific, finite project to learn on turned every problem into something worth solving. Swift, Xcode, Core Data, Astro for the marketing site, Cloudflare Pages for deploys, a little bit of everything.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I built with:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;iOS app:&lt;/strong&gt; Native Swift, SwiftUI, Core Data&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No backend.&lt;/strong&gt; All places are bundled into the app as data. The app never makes a network request for content.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No analytics.&lt;/strong&gt; No third-party SDKs. No tracking.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Marketing site:&lt;/strong&gt; Astro + Tailwind on Cloudflare Pages&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Content:&lt;/strong&gt; Markdown files in the repo, rendered statically&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The "no backend" choice was partly philosophical (I didn't want to collect data) and partly practical (one less thing to maintain, one less thing to break). I'm sure a real engineer would look at the code and find a dozen things to refactor.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd love feedback on
&lt;/h2&gt;

&lt;p&gt;Not looking for download numbers or "nice work." I'd actually love thoughts on:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Is bundling content into the app a bad idea at scale?&lt;/strong&gt; Right now I have 26 places. What happens if I have 300? Is it time to add a CMS, or is "ship a new app version per content update" actually fine?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SwiftUI vs UIKit for content-heavy apps?&lt;/strong&gt; I went all-in on SwiftUI and mostly it's been fine, but there are a few places where it feels like I'm fighting the framework (scroll performance with many images, offline image caching).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Static + markdown site vs a proper CMS?&lt;/strong&gt; I'm enjoying the simplicity of markdown files, but I worry I'm going to regret it at 100 posts. Curious what setups people have converged on.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;App analytics without tracking?&lt;/strong&gt; I want to know if people are actually using the app — which places get tapped, do people use the map more than the list — without adopting Firebase/Mixpanel. Is there a privacy-preserving approach I'm missing?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If any of these resonate, I'd love your take. Not selling anything — the app is genuinely free forever, no monetisation, no upgrade funnel. Just a passion project for the city I grew up in, and I'm trying to make both the app and the code behind it better.&lt;/p&gt;

&lt;p&gt;If you're going to Kyoto, give it a download and tell me what it gets wrong.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Kyoto Unknown:&lt;/strong&gt; &lt;a href="https://kyotounknown.com" rel="noopener noreferrer"&gt;kyotounknown.com&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Free forever commitment:&lt;/strong&gt; &lt;a href="https://kyotounknown.com/promise" rel="noopener noreferrer"&gt;kyotounknown.com/promise&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;App Store:&lt;/strong&gt; &lt;a href="https://apps.apple.com/app/id6762438418" rel="noopener noreferrer"&gt;apps.apple.com/app/id6762438418&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ios</category>
      <category>swift</category>
      <category>beginners</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
