惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
云风的 BLOG
云风的 BLOG
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Recent Announcements
Recent Announcements
IT之家
IT之家
Google DeepMind News
Google DeepMind News
罗磊的独立博客
爱范儿
爱范儿
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
U
Unit 42
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
B
Blog
博客园 - 叶小钗
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Shipping an iOS App Without a Mac — Flutter Firebase Gemi...
Hazuki | Ind · 2026-04-27 · via DEV Community

Introduction

Hi, I'm Hazuki — an indie developer based in Japan.

I built and shipped Smart Inventory, a family grocery management app, using Flutter, Firebase, and the Gemini AI API — entirely from a Windows machine, without ever touching a Mac.

In this post, I'll walk through the challenges I ran into and how I solved them. If you're in a similar situation, I hope this helps.


What I Built

Smart Inventory — Family Grocery & Home Tracker

A real-time inventory and shopping list sharing app designed for busy, dual-income families.

Key Features

  • Inventory Management: Organize food and household items by category (fridge, freezer, pantry, spices, daily essentials)
  • Expiry Alerts: Color-coded warnings for items expiring soon (🔴 today / 🟠 within 3 days)
  • Shared Shopping List: Real-time sync across the family — shows who added what
  • AI Recipe Suggestions: Gemini AI suggests personalized recipes based on what's currently in stock
  • Household Profile: Recipes are personalized based on allergies, cooking time, skill level, and cuisine preferences
  • Premium Subscription: Applied at the household level — one purchase covers the whole family ### Tech Stack
Layer Tools
Frontend Flutter / Riverpod / Freezed
Backend Firebase (Auth / Firestore / Cloud Functions / FCM)
AI Google Gemini API (proxied via Cloud Functions)
Payments RevenueCat
CI/CD Codemagic
Dev Environment Windows / VSCode (no Mac)

Why I Built It

It started with small but persistent frustrations of dual-income household life:

  • The "bought it again" problem: Three bottles of soy sauce. Two packs of eggs.
  • The "what's in the fridge?" problem: Having to text your partner before every grocery run
  • The "what's for dinner?" problem: Coming home exhausted and having no idea what to cook I tried existing inventory apps, but none combined real-time family sharing with AI-powered recipe suggestions in one place. So I decided to build it myself.

Technical Challenges & Solutions

1. Building an iOS App Without a Mac

Buying a Mac just for indie development is a big investment. After some research, I found Codemagic — a cloud CI/CD service that builds on real Mac hardware in the cloud.

# codemagic.yaml overview
workflows:
  ios-release:
    name: iOS Release
    instance_type: mac_mini_m2
    environment:
      ios_signing:
        distribution_type: app_store
        bundle_identifier: com.hazuki-tech.smartInventory

Enter fullscreen mode Exit fullscreen mode

Codemagic handles the build on a cloud Mac, so everything stays on Windows. Certificate management is handled automatically using an App Store Connect API key — no Mac required at any step.

2. Provisioning Profile Missing In-App Purchase Entitlement

After adding IAP support, my builds started failing with this error:

Error: Provisioning profile doesn't include 
the com.apple.developer.in-app-payments entitlement.

Enter fullscreen mode Exit fullscreen mode

Root cause: The In-App Purchase capability wasn't enabled on the App ID in Apple Developer.

Fix:

  1. Apple Developer → Identifiers → Select your App ID
  2. Enable In-App Purchase under Capabilities
  3. Regenerate the provisioning profile
  4. Set Codemagic Code Signing to "Automatic" ### 3. RevenueCat Webhook Bug: CANCELLATION vs EXPIRATION

I had a critical bug in my subscription webhook logic.

Problem: I was treating CANCELLATION and EXPIRATION the same way, which caused users to lose Premium access immediately after cancelling — even though they'd paid for the rest of the billing period.

Correct behavior:

  • CANCELLATION = User cancelled, but they're still in the paid period → keep Premium
  • EXPIRATION = Billing period actually ended → downgrade to Free
case 'CANCELLATION':
  // Still within paid period — keep Premium
  await updateSubscriptionStatus(householdId, {
    plan_type: 'premium',
    premium_expiry: expirationAtMs,
  });
  break;

case 'EXPIRATION':
  // Billing period ended — downgrade to Free
  await updateSubscriptionStatus(householdId, {
    plan_type: 'free',
    premium_expiry: null,
  });
  break;

Enter fullscreen mode Exit fullscreen mode

4. Gemini API Ignoring Allergy Constraints

Even when I included allergy restrictions in the prompt, Gemini occasionally suggested recipes containing those ingredients.

Root cause: The allergy constraint was buried among other conditions with no special priority signaling.

Fix: Move the constraint to the very top of the prompt as a standalone section with strong emphasis.

⚠️ ABSOLUTE PRIORITY — MUST FOLLOW WITHOUT EXCEPTION:
The following dietary restrictions must NEVER appear in any recipe,
even in small amounts, as hidden ingredients, or in alternative forms.
This rule overrides all other instructions.

[FORBIDDEN INGREDIENTS]
- Eggs and egg-based products (mayonnaise, egg yolk, egg white, etc.)

Enter fullscreen mode Exit fullscreen mode

I'm using gemini-2.5-flash as the primary model with gemini-2.5-pro as a fallback, with a 120-second timeout to handle more complex recipe generation.

5. Riverpod Late Initialization Bug

User preferences from the household profile weren't being reflected in Gemini's recipe suggestions.

Root cause: RecipeRepository was being instantiated before HouseholdProfileProvider had finished loading from Firestore, resulting in profile: null.

Fix: Explicitly await the Firestore data before accessing the repository.

// Before: profile is null when RecipeRepository is created
final repository = ref.read(recipeRepositoryProvider);

// After: wait for Firestore data before accessing the repository
await ref.read(householdProfileProvider.future);
final repository = ref.read(recipeRepositoryProvider);

Enter fullscreen mode Exit fullscreen mode

6. Preventing Duplicate Recipe Suggestions

Gemini was occasionally suggesting the same recipes repeatedly.

Fix: Fetch the 5 most recent recipe titles from Firestore and inject them into the prompt as a strict prohibition list.

const recentRecipes = await getRecentRecipes(householdId, 5);
const prohibitedList = recentRecipes.map(r => `- ${r.title}`).join('\n');

const prompt = `
STRICT RULE — DO NOT SUGGEST:
The following recipes (and anything similar) must not be suggested:
${prohibitedList}
`;

Enter fullscreen mode Exit fullscreen mode


Recipe Usage Limits

Since AI recipe generation calls the Gemini API via Cloud Functions, cost control matters. Usage is tracked server-side in Firestore to prevent client-side manipulation.

Plan Limit Reset
Free 10/month 1st of each month
Premium 10/day Midnight each day

The counter is only incremented after a successful API response — failed requests don't count against the limit.


Dev Tools

Purpose Tool
IDE VSCode (Windows)
Version Control GitHub
iOS Builds Codemagic (cloud CI/CD)
Payments RevenueCat
API Key Management Firebase Secret Manager
Legal Pages GitHub Pages
AI Coding Assistant Claude Code

The Journey to Launch

  1. Planning & Design: Requirements, Firestore schema design
  2. Core Features: Inventory, shopping list, Firebase integration
  3. AI Features: Gemini API proxied through Cloud Functions
  4. Payments: RevenueCat integration, Webhook setup
  5. CI/CD: Codemagic pipeline, automated builds
  6. App Store Prep: Screenshots, descriptions, privacy policy

7. Submission: Review approved → manual release

Lessons Learned

What went well

  • No Mac, no problem: Codemagic removed the biggest barrier to iOS development on Windows
  • Firebase + Riverpod is a great combo: StreamProvider made real-time sync surprisingly easy
  • Claude Code accelerated development significantly: Passing a CLAUDE.md spec file and letting it handle complex implementations saved a huge amount of time
    What was hard

  • RevenueCat subscription lifecycle: The CANCELLATION vs EXPIRATION distinction caught me off guard

  • Prompt engineering: Getting an LLM to reliably follow strict constraints is harder than it looks

- IAP testing without a Mac: Sandbox testing for in-app purchases is tricky without direct device access

Closing Thoughts

You don't need a Mac to ship an iOS app as an indie developer. With tools like Codemagic, the barrier is much lower than it used to be.

Smart Inventory is live on the App Store — search for "Smart Inventory" or grab it at the link below. Feedback is always welcome!

https://apps.apple.com/us/app/smart-inventory-family-pantry/id6760807269

Feel free to reach out on X: @hazuki_tech_dev


If this was useful, a like or comment goes a long way 🙏