Skip to content

Commit 6dc71bb

Browse files
committed
Introduces fvm, add .vscode to gitignore
1 parent 96311a3 commit 6dc71bb

3 files changed

Lines changed: 19 additions & 82 deletions

File tree

.fvmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"flutter": "3.29.3"
3+
}

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ build/
3636
node_modules
3737
.env
3838

39-
# FVM
40-
.fvm
39+
# FVM Version Cache
40+
.fvm/

pubspec.yaml

Lines changed: 14 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ homepage: "https://vpnclient.click"
55

66
environment:
77
sdk: ^3.7.2
8-
flutter: '>=3.3.0'
98

109
dependencies:
1110
flutter:
@@ -19,61 +18,27 @@ dependencies:
1918
http: ^1.3.0
2019
flutter_v2ray: ^1.0.10
2120
rxdart: ^0.28.0
22-
23-
platforms:
24-
android:
25-
dependencies:
26-
vpnclient_engine_android:
27-
git:
28-
url: https://github.com/VPNclient/VPNclient-engine.git
29-
ref: main
30-
path: android/
31-
ios:
32-
dependencies:
33-
vpnclient_engine_ios:
34-
path: ../VPNclient-engine-ios
35-
# git:
36-
# url: https://github.com/VPNclient/VPNclient-engine-ios.git
37-
# ref: main
38-
# path: .
39-
40-
macos:
41-
dependencies:
42-
vpnclient_engine_macos:
43-
path: ../VPNclient-engine-ios
44-
# git:
45-
# url: https://github.com/VPNclient/VPNclient-engine-ios.git
46-
# ref: main
47-
# path: .
48-
49-
windows:
50-
dependencies:
51-
vpnclient_engine_windows:
52-
git:
53-
url: https://github.com/VPNclient/VPNclient-engine.git
54-
ref: main
55-
path: windows/
21+
#vpnclient_engine_android:
22+
#git:
23+
#url: https://github.com/VPNclient/VPNclient-engine.git
24+
#ref: main
25+
#path: android/
26+
vpnclient_engine_ios:
27+
path: ../VPNclient-engine-ios
28+
vpnclient_engine_macos:
29+
path: ../VPNclient-engine-ios
30+
#vpnclient_engine_windows:
31+
#git:
32+
#url: https://github.com/VPNclient/VPNclient-engine.git
33+
#ref: main
34+
#path: windows/
5635

5736
dev_dependencies:
5837
flutter_test:
5938
sdk: flutter
6039
flutter_lints: ^5.0.0
6140

62-
# For information on the generic Dart part of this file, see the
63-
# following page: https://dart.dev/tools/pub/pubspec
64-
65-
# The following section is specific to Flutter packages.
6641
flutter:
67-
# This section identifies this Flutter project as a plugin project.
68-
# The 'pluginClass' specifies the class (in Java, Kotlin, Swift, Objective-C, etc.)
69-
# which should be registered in the plugin registry. This is required for
70-
# using method channels.
71-
# The Android 'package' specifies package in which the registered class is.
72-
# This is required for using method channels on Android.
73-
# The 'ffiPlugin' specifies that native code should be built and bundled.
74-
# This is required for using `dart:ffi`.
75-
# All these are used by the tooling to maintain consistency when
76-
# adding or updating assets for this project.
7742
plugin:
7843
platforms:
7944
android:
@@ -90,34 +55,3 @@ flutter:
9055
web:
9156
pluginClass: VpnclientEngineFlutterWeb
9257
fileName: vpnclient_engine_flutter_web.dart
93-
94-
# To add assets to your plugin package, add an assets section, like this:
95-
# assets:
96-
# - images/a_dot_burr.jpeg
97-
# - images/a_dot_ham.jpeg
98-
#
99-
# For details regarding assets in packages, see
100-
# https://flutter.dev/to/asset-from-package
101-
#
102-
# An image asset can refer to one or more resolution-specific "variants", see
103-
# https://flutter.dev/to/resolution-aware-images
104-
105-
# To add custom fonts to your plugin package, add a fonts section here,
106-
# in this "flutter" section. Each entry in this list should have a
107-
# "family" key with the font family name, and a "fonts" key with a
108-
# list giving the asset and other descriptors for the font. For
109-
# example:
110-
# fonts:
111-
# - family: Schyler
112-
# fonts:
113-
# - asset: fonts/Schyler-Regular.ttf
114-
# - asset: fonts/Schyler-Italic.ttf
115-
# style: italic
116-
# - family: Trajan Pro
117-
# fonts:
118-
# - asset: fonts/TrajanPro.ttf
119-
# - asset: fonts/TrajanPro_Bold.ttf
120-
# weight: 700
121-
#
122-
# For details regarding fonts in packages, see
123-
# https://flutter.dev/to/font-from-package

0 commit comments

Comments
 (0)