Side-by-side comparison of viable Clojure-on-Android approaches: - todo-expo/: ClojureScript + shadow-cljs + Expo + Reagent + re-frame - todo-flutter/: ClojureDart + Flutter Both apps feature: add/remove/check-off todos, SQLite persistence, categories, priorities, edit support, swipe-to-delete, filtering. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
576 B
JSON
33 lines
576 B
JSON
{
|
|
"expo": {
|
|
"name": "Todo App",
|
|
"slug": "todo-expo",
|
|
"privacy": "public",
|
|
"platforms": [
|
|
"ios",
|
|
"android",
|
|
"web"
|
|
],
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/icon.png",
|
|
"splash": {
|
|
"image": "./assets/splash.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"updates": {
|
|
"fallbackToCacheTimeout": 0
|
|
},
|
|
"assetBundlePatterns": [
|
|
"**/*"
|
|
],
|
|
"ios": {
|
|
"supportsTablet": true
|
|
},
|
|
"plugins": [
|
|
"expo-sqlite"
|
|
]
|
|
}
|
|
}
|