2 Star 0 Fork 0

mirrors_aws-amplify/amplify-flutter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.devcontainer
.github
.vscode
actions
build-support
build_canary.sh
codecov.sh
dummy_amplifyconfiguration.dart
integ_test.sh
integ_test_ios.sh
lint_android.sh
pull_backend_by_app_id.sh
canaries
infra-gen2
infra
packages
templates
tool
.codecov.yml
.gitattributes
.gitignore
.gitmodules
.pubignore
.spr.yml
CONTRIBUTING.md
LICENSE
README.md
THIRD_PARTY
pubspec.yaml
克隆/下载
lint_android.sh 480 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
set -euo pipefail
# Script is run from example/ folder.
# Pop up a dir to get the package we're testing.
pushd ..
project=$(basename $PWD)
popd
cd android
# * Run in background to prevent Melos from hanging
# * can't use -no-rebuild here as the lint depends on local_aar_for_lint the
# intermediates to work, but flutter build doesn't generate it
./gradlew :$project:lintDebug --no-daemon --stacktrace &
gradle_pid=$!
if ! wait $gradle_pid; then
exit 1
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_aws-amplify/amplify-flutter.git
git@gitee.com:mirrors_aws-amplify/amplify-flutter.git
mirrors_aws-amplify
amplify-flutter
amplify-flutter
main

搜索帮助