Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,16 @@ try {
| UI/JS fixes, translations, new features with existing plugins | Live Update (`pnpm live-update`) |
| New plugins, native code, new permissions, Capacitor upgrades | Store Release (push git tag) |

### Version Bumping (Required for Store Releases)

Before creating a store release, **all three locations must be updated**:

| File | Fields | Notes |
| --------------------------------------- | ---------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
| `package.json` | `version` | Semantic version (e.g., `1.10.0`) |
| `android/app/build.gradle` | `versionCode`, `versionName` | `versionCode` must increment every build (integer), `versionName` matches package.json |
| `ios/App/App.xcodeproj/project.pbxproj` | `MARKETING_VERSION`, `CURRENT_PROJECT_VERSION` | `MARKETING_VERSION` matches package.json, `CURRENT_PROJECT_VERSION` increments per upload of same version |

### Process

- **Live Update:** `pnpm live-update` builds, signs, and uploads bundle
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "dev.wizzo.tapto"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 21
versionName "1.9.1"
versionCode 23
versionName "1.10.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.9.1;
MARKETING_VERSION = 1.10.1;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = dev.wizzo.tapto;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -413,7 +413,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.9.1;
MARKETING_VERSION = 1.10.1;
PRODUCT_BUNDLE_IDENTIFIER = dev.wizzo.tapto;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zaparoo-app",
"private": true,
"version": "1.10.0",
"version": "1.10.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down