Skip to content

Commit cbe48ff

Browse files
committed
MSIXの設定
1 parent c494539 commit cbe48ff

4 files changed

Lines changed: 97 additions & 1 deletion

File tree

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ android {
3535
defaultConfig {
3636
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
3737
applicationId "com.corenion.filetrucker"
38-
minSdkVersion 23
38+
minSdkVersion 27
3939
targetSdkVersion 31
4040
versionCode flutterVersionCode.toInteger()
4141
versionName flutterVersionName

assets/icon_400x400.png

8.28 KB
Loading

pubspec.lock

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# Generated by pub
22
# See https://dart.dev/tools/pub/glossary#lockfile
33
packages:
4+
archive:
5+
dependency: transitive
6+
description:
7+
name: archive
8+
url: "https://pub.dartlang.org"
9+
source: hosted
10+
version: "3.3.0"
11+
args:
12+
dependency: transitive
13+
description:
14+
name: args
15+
url: "https://pub.dartlang.org"
16+
source: hosted
17+
version: "2.3.0"
418
async:
519
dependency: transitive
620
description:
@@ -29,6 +43,20 @@ packages:
2943
url: "https://pub.dartlang.org"
3044
source: hosted
3145
version: "1.3.1"
46+
cli_dialog:
47+
dependency: transitive
48+
description:
49+
name: cli_dialog
50+
url: "https://pub.dartlang.org"
51+
source: hosted
52+
version: "0.5.0"
53+
cli_util:
54+
dependency: transitive
55+
description:
56+
name: cli_util
57+
url: "https://pub.dartlang.org"
58+
source: hosted
59+
version: "0.3.5"
3260
clock:
3361
dependency: transitive
3462
description:
@@ -50,6 +78,20 @@ packages:
5078
url: "https://pub.dartlang.org"
5179
source: hosted
5280
version: "0.3.2"
81+
crypto:
82+
dependency: transitive
83+
description:
84+
name: crypto
85+
url: "https://pub.dartlang.org"
86+
source: hosted
87+
version: "3.0.1"
88+
dart_console:
89+
dependency: transitive
90+
description:
91+
name: dart_console
92+
url: "https://pub.dartlang.org"
93+
source: hosted
94+
version: "1.0.0"
5395
desktop_drop:
5496
dependency: "direct main"
5597
description:
@@ -135,6 +177,13 @@ packages:
135177
description: flutter
136178
source: sdk
137179
version: "0.0.0"
180+
get_it:
181+
dependency: transitive
182+
description:
183+
name: get_it
184+
url: "https://pub.dartlang.org"
185+
source: hosted
186+
version: "7.2.0"
138187
http:
139188
dependency: transitive
140189
description:
@@ -149,6 +198,13 @@ packages:
149198
url: "https://pub.dartlang.org"
150199
source: hosted
151200
version: "4.0.0"
201+
image:
202+
dependency: transitive
203+
description:
204+
name: image
205+
url: "https://pub.dartlang.org"
206+
source: hosted
207+
version: "3.1.3"
152208
js:
153209
dependency: transitive
154210
description:
@@ -191,6 +247,20 @@ packages:
191247
url: "https://pub.dartlang.org"
192248
source: hosted
193249
version: "1.0.0"
250+
msix:
251+
dependency: "direct dev"
252+
description:
253+
name: msix
254+
url: "https://pub.dartlang.org"
255+
source: hosted
256+
version: "3.5.1"
257+
package_config:
258+
dependency: transitive
259+
description:
260+
name: package_config
261+
url: "https://pub.dartlang.org"
262+
source: hosted
263+
version: "2.0.2"
194264
package_info_plus:
195265
dependency: "direct main"
196266
description:
@@ -366,6 +436,13 @@ packages:
366436
url: "https://pub.dartlang.org"
367437
source: hosted
368438
version: "4.2.4"
439+
pub_semver:
440+
dependency: transitive
441+
description:
442+
name: pub_semver
443+
url: "https://pub.dartlang.org"
444+
source: hosted
445+
version: "2.1.1"
369446
qr:
370447
dependency: transitive
371448
description:
@@ -553,6 +630,13 @@ packages:
553630
url: "https://pub.dartlang.org"
554631
source: hosted
555632
version: "5.3.1"
633+
yaml:
634+
dependency: transitive
635+
description:
636+
name: yaml
637+
url: "https://pub.dartlang.org"
638+
source: hosted
639+
version: "3.1.0"
556640
sdks:
557641
dart: ">=2.15.1 <3.0.0"
558642
flutter: ">=2.10.0"

pubspec.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ dev_dependencies:
5757
# package. See that file for information about deactivating specific lint
5858
# rules and activating additional ones.
5959
flutter_lints: ^1.0.0
60+
msix: ^3.5.1
6061

6162
# For information on the generic Dart part of this file, see the
6263
# following page: https://dart.dev/tools/pub/pubspec
@@ -96,3 +97,14 @@ flutter:
9697
- asset: assets/fonts/NotoSansJP-Regular.otf
9798
- asset: assets/fonts/NotoSansJP-Bold.otf
9899
weight: 700
100+
101+
msix_config:
102+
display_name: Open FileTrucker
103+
publisher_display_name: CoreNion
104+
identity_name: com.corenion.filetrucker
105+
logo_path: ./assets/icon_400x400.png
106+
msix_version: 1.0.0.0
107+
languages: ja-jp
108+
capabilities: privateNetworkClientServer
109+
execution_alias: filetrucker
110+
store: false

0 commit comments

Comments
 (0)