Flutter 插件发布私服
一.发布前检测
1 | flutter pub publish --dry-run |
二.跳过谷歌验证
打开终端 , cd 到项目根目录,执行
1
flutter pub get
根目录生成 mypub.dart.snapshot 文件
1
dart --snapshot=mypub.dart.snapshot bin/pub.dart
复制之后放入${flutterSDK Path}/bin/cache/dart-sdk/bin/snapshots/ 目录下
用 VSCode 打开${flutterSDK Path}/bin/cache/dart-sdk/bin/pub文件
将倒数第三行的:
pub.dart.snapshot替换为mypub.dart.snapshot1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42function follow_links() {
file="$1"
while [ -h "$file" ]; do
# On Mac OS, readlink -f doesn't work.
file="$(readlink "$file")"
done
echo "$file"
}
function array_contains() {
local needle="$1"
local element
shift
for element; do [ "$element" = "$needle" ] && return 0; done
return 1
}
Unlike $0, $BASH_SOURCE points to the absolute path of this file.
PROG_NAME="$(follow_links "$BASH_SOURCE")"
Handle the case where dart-sdk/bin has been symlinked to.
BIN_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)"
unset VM_OPTIONS
declare -a VM_OPTIONS
Allow extra VM options to be passed in through an environment variable.
if [[ $DART_VM_OPTIONS ]]; then
read -a OPTIONS <<< "$DART_VM_OPTIONS"
VM_OPTIONS+=("${OPTIONS[@]}")
fi
Run the pub snapshot.
DART="$BIN_DIR/dart"
if array_contains "--no-preview-dart-2" "${VM_OPTIONS[@]}"; then
echo "Pub no longer supports Dart 1"
exit -1
else
SNAPSHOT="$BIN_DIR/snapshots/mypub.dart.snapshot"
exec "$DART" "${VM_OPTIONS[@]}" "$SNAPSHOT" "$@"
fi
三.发布
1 | // 发布谷歌 Pub , https://pub.dev |