<?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: Novia Lim</title>
    <description>The latest articles on DEV Community by Novia Lim (@novialim).</description>
    <link>https://dev.to/novialim</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%2F3903252%2Fe715d376-b9aa-4108-a26f-d88cac40bdc2.jpeg</url>
      <title>DEV Community: Novia Lim</title>
      <link>https://dev.to/novialim</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/novialim"/>
    <language>en</language>
    <item>
      <title>I shipped my first AI iOS app in 24 days. Apple rejected it 4 times. Here's what I learned.</title>
      <dc:creator>Novia Lim</dc:creator>
      <pubDate>Tue, 28 Apr 2026 23:06:59 +0000</pubDate>
      <link>https://dev.to/novialim/i-shipped-my-first-ai-ios-app-in-24-days-apple-rejected-it-4-times-heres-what-i-learned-4jm2</link>
      <guid>https://dev.to/novialim/i-shipped-my-first-ai-ios-app-in-24-days-apple-rejected-it-4-times-heres-what-i-learned-4jm2</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;A solo founder's honest recap of building HadaBuddy: 508 commits, 4 Apple rejections, one Gemini API key, and the parts nobody writes about.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;I started building HadaBuddy on March 28, 2026.&lt;/p&gt;

&lt;p&gt;I had it live in the App Store 24 days later.&lt;/p&gt;

&lt;p&gt;I didn't quit my job. I didn't take vacation. I have a full-time engineering role I genuinely love, and HadaBuddy got built in the cracks: weeknights after my kid went to bed, Saturday mornings before the household woke up, the occasional Sunday afternoon when I should have been doing literally anything else.&lt;/p&gt;

&lt;p&gt;This is the recap. Not the LinkedIn humblebrag. The real one, with the parts that didn't go to plan.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I was building
&lt;/h2&gt;

&lt;p&gt;HadaBuddy is an AI ingredient scanner for skincare. Scan any product with your phone, by barcode or by ingredient label, in any language, and it tells you what each ingredient is doing in your jar, whether it's likely to fit your skin, and what to actually do with the product. It runs OCR on-device, has a 47,000-ingredient reference database, and uses Gemini under the hood for the personalization layer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;I started this for myself. I wanted to learn AI properly, and the way I learn anything is to build with it.&lt;/p&gt;

&lt;p&gt;The trick was picking the right something to build. I didn't want another notes app or chatbot wrapper. I wanted to point AI at a real pain point, the kind I lived with every day, where the wrong answer cost me real money or real skin.&lt;/p&gt;

&lt;p&gt;Which brings me to last November. I came home from a Korea trip with a suitcase of masks, serums, and sheet packs in three different label languages, and realized I was about to spend a whole evening typing INCI names into Google. There were a few existing ingredient apps. None of them were built for the person I actually was.&lt;/p&gt;

&lt;p&gt;That was my pain point. So I built the app I wished existed.&lt;/p&gt;

&lt;h2&gt;
  
  
  What "24 days" actually looked like
&lt;/h2&gt;

&lt;p&gt;In numbers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;508 commits&lt;/strong&gt; across 31 days, around 17 a day on average&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;9 of 15 planned phases&lt;/strong&gt; shipped end-to-end&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;47,000 ingredients&lt;/strong&gt; in the database&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;150+ conflict rules&lt;/strong&gt; with severity badges&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;8 onboarding screens&lt;/strong&gt; so the AI actually knows who you are before it gives advice&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;3 Gemini tiers&lt;/strong&gt; for cost control (Flash Lite, Flash, Pro for high-reasoning calls)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Week 1: brand and foundation
&lt;/h2&gt;

&lt;p&gt;The first week looked nothing like building a product. It looked like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Repo init, brand identity, gradient palette, the "✦ HadaBuddy ✦" mark&lt;/li&gt;
&lt;li&gt;Picking the stack. Expo for mobile, Next.js for the marketing site, Supabase for everything backend, Vercel for everything web. No exotic tools. I wanted to ship, not learn.&lt;/li&gt;
&lt;li&gt;Building the schema for the ingredient database. This was the whole product, so I spent a full Saturday on it.&lt;/li&gt;
&lt;li&gt;A waitlist site so I could collect emails while I built the real thing.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Halfway through the week I almost convinced myself to add an Android version. I didn't. That decision is one of the big reasons there's an iOS version live now.&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 2: mobile shell and skin profile
&lt;/h2&gt;

&lt;p&gt;Days 8 to 14 were when the product became a product. 4-tab navigation. The 8-screen onboarding flow that asks about your skin type, concerns, age, tone, gender, and location. AsyncStorage. EAS Development Build.&lt;/p&gt;

&lt;p&gt;This was also the week I had to make my first stack-purity-vs-shipping trade. The original plan had Zustand for state, op-sqlite for local storage, and NativeWind for styling. What I actually shipped was React Context, Supabase as the source of truth, and raw StyleSheet. Less elegant. Faster to ship.&lt;/p&gt;

&lt;p&gt;I made a note in my plan doc: &lt;em&gt;"Decision: ship over purity."&lt;/em&gt; I've reread that line every time I've been tempted to redo something this month.&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 3: the AI part
&lt;/h2&gt;

&lt;p&gt;Days 15 to 21 were the part most people imagine when they think "AI app": getting the OCR to work, wiring up Gemini, turning a photo of a product label into a structured ingredient list, then turning that list into actual advice for a specific person's skin.&lt;/p&gt;

&lt;p&gt;This took longer than I expected because the hard part wasn't the AI. It was the messy real-world inputs. Smudged labels. Korean ingredient names with subscript numbers. Sunscreens that printed everything in three columns of 6-point font.&lt;/p&gt;

&lt;p&gt;The fix was unsexy: a custom validation step before every Gemini call, a 3-tier cache (memory, disk, Supabase) so the same product never gets re-scanned twice, and a fuzzy INCI matcher that knows "Niacinamide" and "NIACINAMIDE" and "nicotinamide" are the same thing.&lt;/p&gt;

&lt;p&gt;This is also when I built the 7-day weekly routine engine: AM/PM, conflict detection, per-day locking. 80 conflict rules at the start. 150+ now.&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 4: monetization and launch prep
&lt;/h2&gt;

&lt;p&gt;Days 22 to 24 were the stretch.&lt;/p&gt;

&lt;p&gt;RevenueCat. The paywall. The pricing page. The Pro tier ($3.99/mo, $29.99/yr). Nudge-gated paywall, the kind that appears after you've used the product, not before. Server-side rate limits so I don't accidentally pay Google to serve a stranger's free tier.&lt;/p&gt;

&lt;p&gt;The marketing site rollout was behind a &lt;code&gt;NEXT_PUBLIC_APP_LIVE&lt;/code&gt; env toggle so I could flip it on the moment Apple approved the build.&lt;/p&gt;

&lt;p&gt;Then I hit Submit. Which is where the actual hard part started.&lt;/p&gt;

&lt;h2&gt;
  
  
  Apple App Review: where I lost almost two weeks
&lt;/h2&gt;

&lt;p&gt;I left this part out of the timeline because it was the part I wanted to forget.&lt;/p&gt;

&lt;p&gt;I submitted my first TestFlight build on April 7 at 7:57pm, full of confidence. Less than 24 hours later, App Review came back with one line that took the wind out of me:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Guideline 2.1(a) Performance App Completeness.&lt;/strong&gt; We were unable to review the app because it crashed on launch.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;They couldn't even open it.&lt;/p&gt;

&lt;p&gt;The reviewer was on an iPhone 17 Pro Max running iOS 26.4, the latest beta. I'd been testing on slightly older versions. The crash logs (two of them, attached as raw &lt;code&gt;.ips&lt;/code&gt; files) pointed to a code path that only ran on the iOS my reviewer happened to be using.&lt;/p&gt;

&lt;p&gt;I sat with that email for about 20 minutes before I touched the code. There's a particular flavor of dread that comes with "we couldn't even open your app." It's not a missing feature. It's not a privacy oversight. It's "your thing doesn't work," in writing, from Apple.&lt;/p&gt;

&lt;p&gt;I fixed the crash. Pushed a new build. Resubmitted.&lt;/p&gt;

&lt;p&gt;The next rejection arrived hours later. Same guideline. &lt;strong&gt;Same exact reason. Crashed on launch.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That one hurt more than the first. My "fix" had only patched one of two crash paths. The reviewer's device hit the second one. I learned in real time that "it works on my phone" is meaningless when the reviewer is on the latest hardware running the latest OS.&lt;/p&gt;

&lt;p&gt;So I bought a fresh test device, downloaded iOS 26.4, and cold-launched the app on it about a hundred times until I trusted the build.&lt;/p&gt;

&lt;p&gt;The TestFlight crashes were just the warmup. The real App Store rejections came next.&lt;/p&gt;

&lt;h3&gt;
  
  
  Round one: I forgot to submit the IAP products themselves
&lt;/h3&gt;

&lt;p&gt;April 14. I'd wired up the paywall, configured the in-app subscriptions in App Store Connect, hit Submit on the binary. Apple wrote back:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"The app includes references to subscriptions but the associated In-App Purchase products have not been submitted for review."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The IAP products and the app binary live in two separate "submit for review" queues in App Store Connect. I'd submitted the binary. I'd never submitted the IAP products. They sit in their own UI, attached to a specific app version, requiring their own metadata and an "App Review screenshot." Half a day lost to clicking through App Store Connect.&lt;/p&gt;

&lt;p&gt;Same email also flagged a missing Terms of Use link in my App Description. My Pro tier UI mentioned subscription terms in-app, which I'd assumed was enough. It wasn't. Apple requires a functional link to the Terms of Use in the App Description AND in the EULA field on App Store Connect. Two more lines of metadata. Another 24 hours of waiting.&lt;/p&gt;

&lt;h3&gt;
  
  
  Round two: the third-party AI privacy disclosure
&lt;/h3&gt;

&lt;p&gt;April 18. The rejection that every AI app builder should read carefully.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Guidelines 5.1.1(i) Privacy Data Collection and 5.1.2(i) Privacy Data Use.&lt;/strong&gt; The app appears to share the user's personal data with a third-party AI service but the app does not clearly explain what data is sent, identify who the data is sent to, and ask the user's permission before sharing the data.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;HadaBuddy uses Gemini for the routine generation logic. To Apple, that's a third-party AI service receiving user data. The app must:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Explain in-app what data is being sent&lt;/li&gt;
&lt;li&gt;Name the recipient (Google, Gemini)&lt;/li&gt;
&lt;li&gt;Ask for explicit consent before the first call&lt;/li&gt;
&lt;li&gt;Update the privacy policy with the same details&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I'd done some of this. I had a privacy policy mention. I did not have an in-app consent screen with an explicit "send my skin profile data to Google for AI processing" toggle that fired before the first Gemini call. The reviewer caught it.&lt;/p&gt;

&lt;p&gt;If you are building anything that sends user data to OpenAI, Anthropic, Google, or anyone else's LLM API, expect this rejection. It is a relatively new App Review focus and it is getting stricter. Plan for an explicit consent screen in your onboarding flow from day one.&lt;/p&gt;

&lt;p&gt;By the time the "Ready for Sale" email finally landed, I'd been through more rejections than I want to count. The four above are the ones I won't forget. The rest were the smaller stuff: a metadata field here, a screenshot caption there, a permission string the reviewer wanted spelled out more carefully. Each one cost me 24 hours of waiting and a small piece of confidence I had to find again before I hit Submit.&lt;/p&gt;

&lt;p&gt;I screenshotted that "Ready for Sale" email. It's still on my desktop.&lt;/p&gt;

&lt;h3&gt;
  
  
  What I would tell my younger self
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Test on the latest iOS, not the version on your phone.&lt;/strong&gt; Apple reviewers run current devices on current OS. Buy a test device or boot the latest iOS Simulator, and cold-launch your app there before every submission.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Symbolicate your crash logs before you panic.&lt;/strong&gt; Apple attaches the raw &lt;code&gt;.ips&lt;/code&gt; files to the rejection. They look like garbage. You need to symbolicate them with your app's dSYMs before you can actually read what failed. The Xcode instructions aren't optional.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;If you have IAP, submit the IAP products too.&lt;/strong&gt; Not just the binary. They live under their own "Submit for Review" button in App Store Connect, with their own required screenshot.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Link your Terms of Use in the App Description.&lt;/strong&gt; Even if you mention them in-app. Apple checks the metadata as a separate surface.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Build an in-app AI consent screen on day one.&lt;/strong&gt; If you're sending data to a third-party LLM, you need explicit consent BEFORE the first call. Don't bury it in the privacy policy and hope.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Submit early in the week, not on a Friday.&lt;/strong&gt; Reviews queue over the weekend, and you don't want to spend Saturday morning watching a status bar.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I cut to ship in 24 days
&lt;/h2&gt;

&lt;p&gt;The honest list:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Android&lt;/strong&gt;: deferred. iOS only.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Credit-bundle billing&lt;/strong&gt;: planned as Phases 10 to 13. Cut to a single subscription tier. Less ledger plumbing, less time spent on something users hadn't asked for yet.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database hardening&lt;/strong&gt;: Phase 15 (proper Row-Level Security across the board) is still in progress. I shipped with permissive RLS and a plan to harden in the open.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PostHog, Plausible, the full analytics stack&lt;/strong&gt;: dropped. I use Vercel Web Analytics and that's it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All of this was a trade. Speed-to-launch over completeness. I'd make the same trades again.&lt;/p&gt;

&lt;h2&gt;
  
  
  The lonely part
&lt;/h2&gt;

&lt;p&gt;Building solo is lonely in a way nobody quite captures.&lt;/p&gt;

&lt;p&gt;You ship a feature on a Saturday morning and the only feedback you get is your own coffee going cold. You hit a bug at 11pm and there's no one in a Slack channel to rubber-duck with. You learn how to do SEO from scratch by reading Reddit threads and feeling slightly stupid for three weeks.&lt;/p&gt;

&lt;p&gt;There's a quiet army of people doing this every weekend. Most of us never tell anyone.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's actually live now (day 30)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;iOS app, current version v1.13.1, on the App Store&lt;/li&gt;
&lt;li&gt;Marketing site at hadabuddy.com&lt;/li&gt;
&lt;li&gt;Blog with around 24 long-form skincare posts&lt;/li&gt;
&lt;li&gt;Ingredient hub, FAQ, about page&lt;/li&gt;
&lt;li&gt;In-house newsletter via Resend Broadcasts&lt;/li&gt;
&lt;li&gt;47,000-ingredient reference database powering it all&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can &lt;a href="https://apps.apple.com/app/hadabuddy/id6761774731" rel="noopener noreferrer"&gt;download HadaBuddy on the App Store&lt;/a&gt;. It's free, with an optional Pro tier for the people who want unlimited routine regeneration.&lt;/p&gt;

&lt;h2&gt;
  
  
  If I were starting over today
&lt;/h2&gt;

&lt;p&gt;Three things.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Pick a launch date first, then scope to fit.&lt;/strong&gt; Not the other way around. I didn't add an Android version in week 1. That's one of the big reasons there's an iOS version live now.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The polish takes longer than the build.&lt;/strong&gt; The MVP took a week. The actually-shippable version took three.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ship over purity, every single time.&lt;/strong&gt; Every "this should be done properly" instinct is just delay wearing a costume.&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;I'm writing more of these. Next up: what it actually costs to run a free iOS app as a solo founder.&lt;/p&gt;

&lt;p&gt;If you're building something on the side too, send me a note. I'd rather know there are more of us out there than not.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Side project. Nights and weekends. Opinions mine.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published on &lt;a href="https://medium.com/@novialim/not-a-mobile-dev-working-mom-full-time-job-i-shipped-an-ios-app-in-24-days-c160eb3a5ff9" rel="noopener noreferrer"&gt;Medium&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ios</category>
      <category>ai</category>
      <category>appstore</category>
      <category>vibecoding</category>
    </item>
  </channel>
</rss>
