赞
踩
用Android Stduio创建Flutter项目的时候,会出现各种问题,踩了一个又一个,最后编译的时候可能会出现一直显示Running Gradle task 'assembleDebug’然后就不动了解决方案
buildscript {
repositories {
//注释
// google()
// jcenter()
//添加
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/nexus/content/groups/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
}
}
好像会出现新的问题
出现问题不要慌 继续百度
将gradle.build仓库更换为阿里云仓库后报错
1.在仓库前添加关键字:
allowInsecureProtocol = true
2.这里面的http要改成https
再运行就完美通过编译
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。