Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Androidproject | 5,116 | 7 months ago | 1 | apache-2.0 | Java | |||||
Android 技术中台,但愿人长久,搬砖不再有 | ||||||||||
Flutter Architecture Blueprints | 1,308 | a year ago | 30 | mit | Dart | |||||
Flutter Architecture Blueprints is a project that introduces MVVM architecture and project structure approaches to developing Flutter apps. | ||||||||||
Android Learning Resources | 1,289 | 3 years ago | 2 | |||||||
Android学习资源网站索引大全 | ||||||||||
Androidproject Kotlin | 677 | 5 months ago | 3 | apache-2.0 | Kotlin | |||||
Android 技术中台 Kotlin 版本,但愿人长久,搬砖不再有 | ||||||||||
Jetpack_github | 355 | a year ago | mit | Roff | ||||||
基于Kotlin + Jetpack全家桶 + Coroutines(协程) + Flutter等架构实现的一款精简版Github客户端项目,望与广大小伙伴一起成长,欢迎start or fork! | ||||||||||
Mvvm_flutter | 261 | 6 days ago | 1 | other | Dart | |||||
Build MVVM App for Android and IOS with Flutter | ||||||||||
Flawless Ios | 222 | 3 years ago | ||||||||
Awesome iOS guides from the community, shared on Flawless iOS Medium blog 👉 | ||||||||||
Mood Example | 176 | 13 days ago | bsd-3-clause | Dart | ||||||
🐦 Flutter 3 心情记录 样例工程 - 国际化 i18n、uni 小程序、深色模式、多主题、本地数据管理、路由管理、状态管理、无障碍(Semantics)、异步 FFI、集成测试、图表统计、Excel 导入导出、游戏…… | ||||||||||
Flutter Architecture | 112 | 3 years ago | 1 | Dart | ||||||
Clean Architecture with MVVM for Flutter using Get_It, State management, SQFlite, Dio, StorageHelper, ConnectionHelper, custom widgets and more | ||||||||||
Flutter Elementary | 107 | 6 days ago | 20 | August 14, 2022 | 2 | mit | Dart | |||
This is a home to a family of Elementary library packages. |
帮助 Android 开发者,快速上手。
欢迎共建
1、HailouWang 微信 :15911136758
localhost:AndroidGo hailuwang$ flutter --version
Flutter 1.17.1 • channel unknown • unknown source
Framework • revision f7a6a7906b (3 weeks ago) • 2020-05-12 18:39:00 -0700
Engine • revision 6bc433c6b6
Tools • Dart 2.8.2
git clone
之后,需要更改 ./flutter_demo/.android/local.properties
中 环境变量信息sdk.dir=/Users/hailuwang/Library/Android/sdk
flutter.sdk=/Users/hailuwang/tools/flutter
flutter_demo
工程,如果遇到问题,需要先行编译,编译命令:
flutter --no-color packages get
{flutterRoot}/flutter/packages/flutter_tools/gradle/flutter.gradle
buildscript {
repositories {
- google()
- jcenter()
+maven { url 'https://maven.aliyun.com/repository/google' }
+maven { url 'https://maven.aliyun.com/repository/jcenter' }
+maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
@@ -41,7 +42,8 @@ android {
apply plugin: FlutterPlugin
class FlutterPlugin implements Plugin<Project> {
- private static final String MAVEN_REPO = "https://storage.googleapis.com/download.flutter.io";
+ //private static final String MAVEN_REPO = "https://storage.googleapis.com/download.flutter.io";
+ private static final String MAVEN_REPO = "https://storage.flutter-io.cn/download.flutter.io";
// The platforms that can be passed to the `--Ptarget-platform` flag.
private static final String PLATFORM_ARM32 = "android-arm";
Copyright (c) [2020] [wanghailu]
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.