Skip to content

Commit c093c3e

Browse files
committed
fix
1 parent ca893ad commit c093c3e

141 files changed

Lines changed: 4318 additions & 2087 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ git clone https://github.com/null-base/vrcn.git
7878
flutter pub get
7979

8080
# デバッグモードで実行
81-
flutter run --flavor debug
81+
flutter run
8282

8383
# リリースビルド
84-
flutter build ios --flavor release
85-
flutter build apk --flavor release
84+
flutter build ios --release
85+
flutter build apk --release
8686
```
8787

8888
## 👨‍👩‍👧‍👦 クレジット

.github/README_JP.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ git clone https://github.com/null-base/vrcn.git
7878
flutter pub get
7979

8080
# デバッグモードで実行
81-
flutter run --flavor debug
81+
flutter run
8282

8383
# リリースビルド
84-
flutter build ios --flavor release
85-
flutter build apk --flavor release
84+
flutter build ios --release
85+
flutter build apk --release
8686
```
8787

8888
## 👨‍👩‍👧‍👦 クレジット

.github/workflows/flutter_ci.yml

Lines changed: 8 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -28,64 +28,17 @@ jobs:
2828
with:
2929
cache: true
3030

31-
- name: Flutter version
32-
run: flutter --version
31+
- name: 🩺 Toolchain
32+
run: |
33+
mise doctor
34+
flutter --version
35+
dart --version
3336
3437
- name: 📥 Install dependencies
35-
run: flutter pub get
38+
run: mise run pub-get
3639

3740
- name: 🎨 Check formatting
38-
run: dart format --set-exit-if-changed .
41+
run: mise run format
3942

4043
- name: 🔍 Analyze
41-
run: flutter analyze --fatal-infos --fatal-warnings
42-
43-
# build_android:
44-
# name: Build Android
45-
# runs-on: ubuntu-latest
46-
# needs: analyze
47-
48-
# steps:
49-
# - name: Checkout
50-
# uses: actions/checkout@v6
51-
52-
# - name: Setup Flutter
53-
# uses: subosito/flutter-action@v2
54-
# with:
55-
# channel: stable
56-
# cache: true
57-
58-
# - name: Install dependencies
59-
# run: flutter pub get
60-
61-
# - name: Build Android APK
62-
# run: flutter build apk --release
63-
64-
# # AAB が必要ならこっちも有効化
65-
# # - name: Build Android App Bundle
66-
# # run: flutter build appbundle --release
67-
68-
# build_ios:
69-
# name: Build iOS
70-
# runs-on: macos-latest
71-
# needs: analyze
72-
73-
# steps:
74-
# - name: Checkout
75-
# uses: actions/checkout@v6
76-
77-
# - name: Setup Flutter
78-
# uses: subosito/flutter-action@v2
79-
# with:
80-
# channel: stable
81-
# cache: true
82-
83-
# - name: Install dependencies
84-
# run: flutter pub get
85-
86-
# - name: Install CocoaPods
87-
# working-directory: ios
88-
# run: pod install --repo-update
89-
90-
# - name: Build iOS no codesign
91-
# run: flutter build ios --release --no-codesign
44+
run: mise run analyze

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"request": "launch",
99
"program": "lib/main.dart",
1010
"flutterMode": "debug",
11-
"toolArgs": ["--flavor", "dev"],
11+
// "toolArgs": ["--flavor", "dev"],
1212
"presentation": {
1313
"group": "iOS",
1414
"order": 1

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"dart.analysisExcludedFolders": [
3+
"build",
4+
"ios/build",
5+
"**/build/**",
6+
"**/SourcePackages/**"
7+
],
8+
"files.exclude": {
9+
"**/build": true,
10+
"**/ios/build": true
11+
},
12+
"search.exclude": {
13+
"**/build": true,
14+
"**/ios/build": true
15+
}
16+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
source "https://rubygems.org"
22

3+
gem "CFPropertyList", "3.0.8"
34
gem "fastlane"

Gemfile.lock

Lines changed: 234 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
CFPropertyList (3.0.8)
5+
abbrev (0.1.2)
6+
addressable (2.9.0)
7+
public_suffix (>= 2.0.2, < 8.0)
8+
artifactory (3.0.17)
9+
atomos (0.1.3)
10+
aws-eventstream (1.3.2)
11+
aws-partitions (1.1109.0)
12+
aws-sdk-core (3.224.1)
13+
aws-eventstream (~> 1, >= 1.3.0)
14+
aws-partitions (~> 1, >= 1.992.0)
15+
aws-sigv4 (~> 1.9)
16+
base64
17+
jmespath (~> 1, >= 1.6.1)
18+
logger
19+
aws-sdk-kms (1.101.0)
20+
aws-sdk-core (~> 3, >= 3.216.0)
21+
aws-sigv4 (~> 1.5)
22+
aws-sdk-s3 (1.188.0)
23+
aws-sdk-core (~> 3, >= 3.224.1)
24+
aws-sdk-kms (~> 1)
25+
aws-sigv4 (~> 1.5)
26+
aws-sigv4 (1.11.0)
27+
aws-eventstream (~> 1, >= 1.0.2)
28+
babosa (1.0.4)
29+
base64 (0.2.0)
30+
claide (1.1.0)
31+
colored (1.2)
32+
colored2 (3.1.2)
33+
commander (4.6.0)
34+
highline (~> 2.0.0)
35+
csv (3.3.5)
36+
declarative (0.0.20)
37+
digest-crc (0.7.0)
38+
rake (>= 12.0.0, < 14.0.0)
39+
domain_name (0.5.20190701)
40+
unf (>= 0.0.5, < 1.0.0)
41+
dotenv (2.8.1)
42+
emoji_regex (3.2.3)
43+
excon (0.109.0)
44+
faraday (1.10.6)
45+
faraday-em_http (~> 1.0)
46+
faraday-em_synchrony (~> 1.0)
47+
faraday-excon (~> 1.1)
48+
faraday-httpclient (~> 1.0)
49+
faraday-multipart (~> 1.0)
50+
faraday-net_http (~> 1.0)
51+
faraday-net_http_persistent (~> 1.0)
52+
faraday-patron (~> 1.0)
53+
faraday-rack (~> 1.0)
54+
faraday-retry (~> 1.0)
55+
ruby2_keywords (>= 0.0.4)
56+
faraday-cookie_jar (0.0.8)
57+
faraday (>= 0.8.0)
58+
http-cookie (>= 1.0.0)
59+
faraday-em_http (1.0.0)
60+
faraday-em_synchrony (1.0.1)
61+
faraday-excon (1.1.0)
62+
faraday-httpclient (1.0.1)
63+
faraday-multipart (1.2.0)
64+
multipart-post (~> 2.0)
65+
faraday-net_http (1.0.2)
66+
faraday-net_http_persistent (1.2.0)
67+
faraday-patron (1.0.0)
68+
faraday-rack (1.0.0)
69+
faraday-retry (1.0.4)
70+
faraday_middleware (1.2.1)
71+
faraday (~> 1.0)
72+
fastimage (2.4.1)
73+
fastlane (2.230.0)
74+
CFPropertyList (>= 2.3, < 4.0.0)
75+
abbrev (~> 0.1.2)
76+
addressable (>= 2.8, < 3.0.0)
77+
artifactory (~> 3.0)
78+
aws-sdk-s3 (~> 1.0)
79+
babosa (>= 1.0.3, < 2.0.0)
80+
base64 (~> 0.2.0)
81+
bundler (>= 1.12.0, < 3.0.0)
82+
colored (~> 1.2)
83+
commander (~> 4.6)
84+
csv (~> 3.3)
85+
dotenv (>= 2.1.1, < 3.0.0)
86+
emoji_regex (>= 0.1, < 4.0)
87+
excon (>= 0.71.0, < 1.0.0)
88+
faraday (~> 1.0)
89+
faraday-cookie_jar (~> 0.0.6)
90+
faraday_middleware (~> 1.0)
91+
fastimage (>= 2.1.0, < 3.0.0)
92+
fastlane-sirp (>= 1.0.0)
93+
gh_inspector (>= 1.1.2, < 2.0.0)
94+
google-apis-androidpublisher_v3 (~> 0.3)
95+
google-apis-playcustomapp_v1 (~> 0.1)
96+
google-cloud-env (>= 1.6.0, < 2.0.0)
97+
google-cloud-storage (~> 1.31)
98+
highline (~> 2.0)
99+
http-cookie (~> 1.0.5)
100+
json (< 3.0.0)
101+
jwt (>= 2.1.0, < 3)
102+
logger (>= 1.6, < 2.0)
103+
mini_magick (>= 4.9.4, < 5.0.0)
104+
multipart-post (>= 2.0.0, < 3.0.0)
105+
mutex_m (~> 0.3.0)
106+
naturally (~> 2.2)
107+
nkf (~> 0.2.0)
108+
optparse (>= 0.1.1, < 1.0.0)
109+
plist (>= 3.1.0, < 4.0.0)
110+
rubyzip (>= 2.0.0, < 3.0.0)
111+
security (= 0.1.5)
112+
simctl (~> 1.6.3)
113+
terminal-notifier (>= 2.0.0, < 3.0.0)
114+
terminal-table (~> 3)
115+
tty-screen (>= 0.6.3, < 1.0.0)
116+
tty-spinner (>= 0.8.0, < 1.0.0)
117+
word_wrap (~> 1.0.0)
118+
xcodeproj (>= 1.13.0, < 2.0.0)
119+
xcpretty (~> 0.4.1)
120+
xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
121+
fastlane-sirp (1.1.0)
122+
gh_inspector (1.1.3)
123+
google-apis-androidpublisher_v3 (0.54.0)
124+
google-apis-core (>= 0.11.0, < 2.a)
125+
google-apis-core (0.11.3)
126+
addressable (~> 2.5, >= 2.5.1)
127+
googleauth (>= 0.16.2, < 2.a)
128+
httpclient (>= 2.8.1, < 3.a)
129+
mini_mime (~> 1.0)
130+
representable (~> 3.0)
131+
retriable (>= 2.0, < 4.a)
132+
rexml
133+
google-apis-iamcredentials_v1 (0.17.0)
134+
google-apis-core (>= 0.11.0, < 2.a)
135+
google-apis-playcustomapp_v1 (0.13.0)
136+
google-apis-core (>= 0.11.0, < 2.a)
137+
google-apis-storage_v1 (0.29.0)
138+
google-apis-core (>= 0.11.0, < 2.a)
139+
google-cloud-core (1.6.1)
140+
google-cloud-env (>= 1.0, < 3.a)
141+
google-cloud-errors (~> 1.0)
142+
google-cloud-env (1.6.0)
143+
faraday (>= 0.17.3, < 3.0)
144+
google-cloud-errors (1.3.1)
145+
google-cloud-storage (1.45.0)
146+
addressable (~> 2.8)
147+
digest-crc (~> 0.4)
148+
google-apis-iamcredentials_v1 (~> 0.1)
149+
google-apis-storage_v1 (~> 0.29.0)
150+
google-cloud-core (~> 1.6)
151+
googleauth (>= 0.16.2, < 2.a)
152+
mini_mime (~> 1.0)
153+
googleauth (1.8.1)
154+
faraday (>= 0.17.3, < 3.a)
155+
jwt (>= 1.4, < 3.0)
156+
multi_json (~> 1.11)
157+
os (>= 0.9, < 2.0)
158+
signet (>= 0.16, < 2.a)
159+
highline (2.0.3)
160+
http-cookie (1.0.8)
161+
domain_name (~> 0.5)
162+
httpclient (2.9.0)
163+
mutex_m
164+
jmespath (1.6.2)
165+
json (2.7.6)
166+
jwt (2.10.3)
167+
base64
168+
logger (1.7.0)
169+
mini_magick (4.13.2)
170+
mini_mime (1.1.5)
171+
multi_json (1.15.0)
172+
multipart-post (2.4.1)
173+
mutex_m (0.3.0)
174+
nanaimo (0.4.0)
175+
naturally (2.3.0)
176+
nkf (0.2.0)
177+
optparse (0.8.1)
178+
os (1.1.4)
179+
plist (3.7.2)
180+
public_suffix (5.1.1)
181+
rake (13.4.2)
182+
representable (3.2.0)
183+
declarative (< 0.1.0)
184+
trailblazer-option (>= 0.1.1, < 0.2.0)
185+
uber (< 0.2.0)
186+
retriable (3.8.0)
187+
rexml (3.4.4)
188+
rouge (3.28.0)
189+
ruby2_keywords (0.0.5)
190+
rubyzip (2.4.1)
191+
security (0.1.5)
192+
signet (0.18.0)
193+
addressable (~> 2.8)
194+
faraday (>= 0.17.5, < 3.a)
195+
jwt (>= 1.5, < 3.0)
196+
multi_json (~> 1.10)
197+
simctl (1.6.10)
198+
CFPropertyList
199+
naturally
200+
terminal-notifier (2.0.0)
201+
terminal-table (3.0.2)
202+
unicode-display_width (>= 1.1.1, < 3)
203+
trailblazer-option (0.1.2)
204+
tty-cursor (0.7.1)
205+
tty-screen (0.8.2)
206+
tty-spinner (0.9.3)
207+
tty-cursor (~> 0.7)
208+
uber (0.1.0)
209+
unf (0.2.0)
210+
unicode-display_width (2.6.0)
211+
word_wrap (1.0.0)
212+
xcodeproj (1.28.1)
213+
CFPropertyList (>= 2.3.3, < 4.0)
214+
atomos (~> 0.1.3)
215+
base64
216+
claide (>= 1.0.2, < 2.0)
217+
colored2 (~> 3.1)
218+
nanaimo (~> 0.4.0)
219+
nkf
220+
rexml (>= 3.3.6, < 4.0)
221+
xcpretty (0.4.1)
222+
rouge (~> 3.28.0)
223+
xcpretty-travis-formatter (1.0.1)
224+
xcpretty (~> 0.2, >= 0.0.7)
225+
226+
PLATFORMS
227+
ruby
228+
229+
DEPENDENCIES
230+
CFPropertyList (= 3.0.8)
231+
fastlane
232+
233+
BUNDLED WITH
234+
2.4.19

Justfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11

22

3+
set shell := ["bash", "-cu"]
4+
5+
flutter := "mise exec -- flutter"
6+
dart := "mise exec -- dart"
7+
pod := "bundle exec pod"
8+
39
default:
410
@just --list
511

0 commit comments

Comments
 (0)