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
6 changes: 3 additions & 3 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,12 @@ android {
applicationId "me.tinykitten.trainlcd.dev"
versionNameSuffix "-dev"
versionCode 100000757
versionName "10.15.0"
versionName "10.15.1"
}
prod {
dimension "environment"
versionCode 100000757
versionName "10.15.0"
versionName "10.15.1"
}
// ストア配信する dev (Canary) と applicationId を分けた、ローカル検証専用のフレーバー。
// ストアの Canary 版を消さずに同居させるためだけに存在し、配信には使わない
Expand All @@ -178,7 +178,7 @@ android {
applicationId "me.tinykitten.trainlcd.local"
versionNameSuffix "-local"
versionCode 100000757
versionName "10.15.0"
versionName "10.15.1"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions android/wearable/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ android {
applicationIdSuffix = ".dev"
versionNameSuffix = "-dev"
versionCode = 100000758
versionName = "10.15.0"
versionName = "10.15.1"
}
create("prod") {
dimension = "environment"
versionCode = 100000758
versionName = "10.15.0"
versionName = "10.15.1"
}
// :app の local フレーバーと対になるローカル検証専用フレーバー。Wear の Data Layer は
// applicationId が一致する場合しか疎通しないため、:app を .local にしたときは
Expand All @@ -101,7 +101,7 @@ android {
applicationIdSuffix = ".local"
versionNameSuffix = "-local"
versionCode = 100000758
versionName = "10.15.0"
versionName = "10.15.1"
}
}

Expand Down
2 changes: 1 addition & 1 deletion app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const IS_DEV = process.env.APP_VARIANT === 'dev' || IS_LOCAL;
export default {
name: 'TrainLCD',
slug: 'trainlcd',
version: '10.15.0',
version: '10.15.1',
plugins: [
'expo-image',
'expo-font',
Expand Down
8 changes: 4 additions & 4 deletions ios/TrainLCD.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2679,7 +2679,7 @@
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
"\"$(inherited)\"",
);
MARKETING_VERSION = 10.15.0;
MARKETING_VERSION = 10.15.1;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "$(inherited)";
Expand Down Expand Up @@ -2781,7 +2781,7 @@
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
"\"$(inherited)\"",
);
MARKETING_VERSION = 10.15.0;
MARKETING_VERSION = 10.15.1;
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
Expand Down Expand Up @@ -3780,7 +3780,7 @@
"@executable_path/Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MARKETING_VERSION = 10.15.0;
MARKETING_VERSION = 10.15.1;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
Expand Down Expand Up @@ -3834,7 +3834,7 @@
"@executable_path/Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MARKETING_VERSION = 10.15.0;
MARKETING_VERSION = 10.15.1;
MTL_FAST_MATH = YES;
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
PODS_ROOT = "${SRCROOT}/Pods";
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,5 +173,5 @@
}
},
"name": "trainlcd",
"version": "10.15.0"
"version": "10.15.1"
}
Loading