Skip to content

Commit eb5d4a5

Browse files
committed
Fix flutter version
Retrieve VPNclient-engine-flutter from GitHub; pinned to c3bf79010c05a2474a24f763d428a61788a13e9b Remove NDK version pinning Bump dart version to 3.7.2 Add .fvm to gitignore
1 parent 65e4f1a commit eb5d4a5

5 files changed

Lines changed: 15 additions & 10 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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,6 @@ app.*.map.json
4646
pubspec.lock
4747
ios/Runner.xcodeproj/project.pbxproj
4848
ios/Podfile.lock
49+
50+
# FVM Version Cache
51+
.fvm/

android/app/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ if (keystorePropertiesFile.exists()) {
1818
android {
1919
namespace = "vpnclient.click"
2020
compileSdk = flutter.compileSdkVersion
21-
ndkVersion = flutter.ndkVersion
2221

2322
compileOptions {
2423
sourceCompatibility = JavaVersion.VERSION_11

pubspec.lock

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -528,9 +528,11 @@ packages:
528528
vpnclient_engine_flutter:
529529
dependency: "direct main"
530530
description:
531-
path: "../VPNclient-engine-flutter"
532-
relative: true
533-
source: path
531+
path: "."
532+
ref: c3bf79010c05a2474a24f763d428a61788a13e9b
533+
resolved-ref: c3bf79010c05a2474a24f763d428a61788a13e9b
534+
url: "https://github.com/VPNclient/VPNclient-engine-flutter.git"
535+
source: git
534536
version: "0.0.1"
535537
web:
536538
dependency: transitive

pubspec.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1919
version: 1.0.9+9
2020

2121
environment:
22-
sdk: ^3.7.0
22+
sdk: ^3.7.2
2323

2424
# Dependencies specify other packages that your package needs in order to work.
2525
# To automatically upgrade your package dependencies to the latest versions
@@ -36,11 +36,9 @@ dependencies:
3636
flutter_native_splash: ^2.3.1
3737
flutter_bloc: ^9.0.0
3838
vpnclient_engine_flutter:
39-
path: ../VPNclient-engine-flutter
40-
#git:
41-
# url: https://github.com/VPNclient/VPNclient-engine-flutter.git
42-
# ref: main
43-
# path: .
39+
git:
40+
url: https://github.com/VPNclient/VPNclient-engine-flutter.git
41+
ref: c3bf79010c05a2474a24f763d428a61788a13e9b
4442

4543
# The following adds the Cupertino Icons font to your application.
4644
# Use with the CupertinoIcons class for iOS style icons.

0 commit comments

Comments
 (0)