Git Product home page Git Product logo

amap_all_fluttify's Introduction

Fluttify是什么以及解决什么问题?

用一句话来说,Fluttify是一个把原生SDK(目前支持Android/iOS)编译成Flutter插件的编译器。

Fluttify解决了Flutter插件开发过程中需要懂原生开发的问题,为原生SDK生成Dart接口,使插件开发者不再需要深入原生语言的细节,直接调用原生接口的Dart Binding即可。

编译过程中,Fluttify做了什么事?

  1. 为所有原生的公开(public)接口生成其对应的Dart接口。所谓的"接口"包括,public(实例方法,静态方法, 函数, 字段, 常量); 不包括private,protected(实例方法, 静态方法, 字段), 被混淆的(类, 实例方法, 静态方法, 字段)。
  2. 为public的视图类(android.view.View/UIView的子类)生成对应的PlatformView, 供Dart侧使用。
  3. 为1中产生的类增加is/as的方法,用于类型判断和造型。

输出插件工程的结构

编译器的输出是标准的插件工程,在lib文件夹下会有lib/src/androidlib/src/ios两个文件夹,这两个文件夹分别存放android sdk和ios sdk生成的对应dart类。

这两个文件夹下有会有5种类型的文件,分别是sdk内的类,platform view,常量,函数以及is/as扩展(类型检查及造型),最后会有android.export.g.dartios.export.g.dart导出所有的生成文件。

如何使用生出来的插件?

创建一个类的对象

一个Java类转为Dart类时,产生的Dart类类名为Java类的类名全称,比如有一个Java类com.abc.A,那么生成出来的Dart类为com_abc_A。ObjC由于没有命名空间,所以ObjC类转成的Dart类名字是一样的。

编译器会为有公开构造器的类生成Dart侧的create__方法,create__方法会调用Java/ObjC类的对应构造器,如果有多个构造器,那么就会生成多个create__方法,根据参数不同在create__方法名后面一次添加参数类型名称。比如有一个Java类:

class com.abc.A {
    public A() {}
    public A(String arg) {}
}

那么生成的Dart类为:

class com_abc_A {
    static Future<com_abc_A> create__() async { ... }
    static Future<com_abc_A> create__String(String arg) async { ... }
}

调用方法

编译器的目标是让开发者原先怎么调用原生接口,那么就怎么调用编译器生成的Dart接口。所以理论上只需要对原生语句逐句转换即可。比如有这么一段逻辑,摘自amap_map_fluttify,此段逻辑是设置是否显示室内地图: 原生逻辑:

com.amap.api.maps.AMap amap = mapView.getMap();
amap.showIndoorMap(show);

逐句转换为Dart后:

com_amap_api_maps_AMap map = await mapView.getMap();
await map.showIndoorMap(show);

其他的静态方法也好,函数也好,都是一样的逻辑。

内存管理

为了能够实现全局获取需要操作的目标对象,原生端创建的对象或从SDK的接口返回的对象,都会被放入一个全局的Map/NSDictionary中,其中key为对象的hash。如果不手动从全局Map/NSDictionary中删除不需要的对象的话,会造成内存泄露。这个Map/NSDictionary下文中称为HEAP

只要是原生端返回给Dart侧的非可直接传输的类型(可直接传输的类型为String, int等,具体类型列表参考官方文档,这些类型下文称为jsonable类型)原生端会被放入HEAP中,Dart侧会把对应的Dart对象放入一个全局对象kNativeObjectPool中,所谓对应的Dart对象,其实只是一个持有原生对象hash值的Dart对象,每当通过这个Dart对象调用方法时,都会把这个hash传给原生,原生端通过这个hash去HEAP查找需要操作的原生对象,再在这个原生对象上进行方法调用。

Fluttify提供了一个基础库,即foundation_fluttify。这个插件提供了系统类的实现,和一些辅助方法。例如platform方法,提供了方便操作多端逻辑的方法。调用过程形如:

await platform(
  android: (pool /* pool参数用于存放需要在方法结束后释放的对象 */) async {
    final map = await androidController.getMap();
    await map.setTrafficEnabled(enable);
    
    // 由于map对象在方法结束后不再使用,所以放入pool对象中,方法结束后会统一释放
    // 如果方法结束后,仍然需要使用的对象,就不要放入pool中,不然后续调用该对象的时候会报空指针异常,因为已经不在原生的HEAP中
    pool.add(map);
  },
  ios: (pool) async {
    await iosController.set_showTraffic(enable);
  },
);

amap_all_fluttify's People

Contributors

yohom avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

amap_all_fluttify's Issues

支持Desktop&Web

MacOS 和 Web平台都进入了Beta版本,我利用该插件,编译对应版本,发现不支持并且报错。
期望能支持Desktop与Web平台

打包出错

image
我的包
cupertino_icons: ^0.1.2
cached_network_image: ^2.0.0
cookie_jar: ^1.0.1
dio: ^3.0.8
dio_cookie_manager: ^1.0.0
toast: ^0.1.5
json_annotation: ^3.0.1
streaming_shared_preferences: ^1.0.1
provider: ^4.0.4
date_format: ^1.0.8
image_picker: ^0.6.3+1
flushbar: ^1.9.1
amap_all_fluttify: ^0.11.1
permission_handler: ^4.2.0+hotfix.3
install_plugin: ^2.0.1
package_info: ^0.4.0+13
flutter_html: ^0.11.1
vibrate: ^0.0.4
audioplayers: ^0.14.0
web_socket_channel: ^1.1.0

修改grade版本后
image

flutter build apk --release error

FAILURE: Build failed with an exception.

  • What went wrong:
    Could not determine the dependencies of task ':amap_all_fluttify:mergeReleaseResources'.

Could not resolve all task dependencies for configuration ':amap_all_fluttify:releaseRuntimeClasspath'.
Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
Required by:
project :amap_all_fluttify
project :amap_all_fluttify > project :amap_search_fluttify
project :amap_all_fluttify > project :amap_location_fluttify
project :amap_all_fluttify > project :amap_map_fluttify
project :amap_all_fluttify > project :amap_search_fluttify > project :amap_core_fluttify
project :amap_all_fluttify > project :amap_search_fluttify > project :foundation_fluttify
project :amap_all_fluttify > project :amap_map_fluttify > project :url_launcher
project :amap_all_fluttify > project :amap_map_fluttify > project :url_launcher > project :url_launcher_web
project :amap_all_fluttify > project :amap_map_fluttify > project :url_launcher > project :url_launcher_macos
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://storage.googleapis.com/download.flutter.io/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://storage.googleapis.com/download.flutter.io/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://storage.googleapis.com/download.flutter.io/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://storage.googleapis.com/download.flutter.io/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://storage.googleapis.com/download.flutter.io/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://storage.googleapis.com/download.flutter.io/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'http://maven.aliyun.com/nexus/content/groups/public/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'http://maven.aliyun.com/nexus/content/groups/public/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://www.jitpack.io/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://www.jitpack.io/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://google.bintray.com/exoplayer/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://google.bintray.com/exoplayer/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://dl.google.com/dl/android/maven2/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)
> Could not resolve io.flutter:flutter_embedding_release:1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.
> Could not get resource 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Could not GET 'https://jcenter.bintray.com/io/flutter/flutter_embedding_release/1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c/flutter_embedding_release-1.0.0-216c420a2c06e5266a60a768b3fd0b660551cc9c.pom'.
> Connect to 127.0.0.1:60799 [/127.0.0.1] failed: Connection refused (Connection refused)

  • Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

  • Get more help at https://help.gradle.org

BUILD FAILED in 3m 55s
Running Gradle task 'assembleRelease'...
Running Gradle task 'assembleRelease'... Done 239.7s (!)
Gradle task assembleRelease failed with exit code 1

ios打包错误

IOS打包一直有这样两个警告,(armv7) /Users/Shared/Jenkins/Home/workspace/iOS_3dmap_release/MAMapKit/AMapCommon/libAMapCommon.a(Pods-AMapCommon-dummy.o) unable to open object file: No such file or directory
warning: (arm64) /Users/Shared/Jenkins/Home/workspace/iOS_3dmap_release/MAMapKit/AMapCommon/libAMapCommon.a(Pods-AMapCommon-dummy.o) unable to open object file: No such file or directory

一点小建议

这个插件很赞,但是如果有绘制线和面的功能就更好了,不知道能加上吗?

ios 集成后跑不起来

bogon:demo a$ flutter run
 
Launching lib/main.dart on iPhone 11 Pro Max in debug mode...
Running pod install...                                                  
  142.0s (!)                                       
CocoaPods' output:
↳
      Preparing

    Analyzing dependencies

    Inspecting targets to integrate
      Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``)

    Finding Podfile changes
      A amap_all_fluttify
      A amap_map_fluttify
      A amap_search_fluttify
      A url_launcher
      A url_launcher_macos
      A url_launcher_web
      - Flutter
      - amap_core_fluttify
      - amap_location_fluttify
      - city_pickers
      - flutter_plugin_android_lifecycle
      - flutter_sound
      - flutter_splash_screen
      - fluttertoast
      - foundation_fluttify
      - image_crop
      - image_picker
      - path_provider
      - path_provider_macos
      - permission_handler
      - shared_preferences
      - shared_preferences_macos
      - shared_preferences_web
      - tencent_im_plugin
      - video_player
      - video_player_web
      - webview_flutter

    Fetching external sources
    -> Fetching podspec for `Flutter` from `Flutter`
    -> Fetching podspec for `amap_all_fluttify` from
    `.symlinks/plugins/amap_all_fluttify/ios`
    -> Fetching podspec for `amap_core_fluttify` from
    `.symlinks/plugins/amap_core_fluttify/ios`
    -> Fetching podspec for `amap_location_fluttify` from
    `.symlinks/plugins/amap_location_fluttify/ios`
    -> Fetching podspec for `amap_map_fluttify` from
    `.symlinks/plugins/amap_map_fluttify/ios`
    -> Fetching podspec for `amap_search_fluttify` from
    `.symlinks/plugins/amap_search_fluttify/ios`
    -> Fetching podspec for `city_pickers` from
    `.symlinks/plugins/city_pickers/ios`
    -> Fetching podspec for `flutter_plugin_android_lifecycle` from
    `.symlinks/plugins/flutter_plugin_android_lifecycle/ios`
    -> Fetching podspec for `flutter_sound` from
    `.symlinks/plugins/flutter_sound/ios`
    -> Fetching podspec for `flutter_splash_screen` from
    `.symlinks/plugins/flutter_splash_screen/ios`
    -> Fetching podspec for `fluttertoast` from
    `.symlinks/plugins/fluttertoast/ios`
    -> Fetching podspec for `foundation_fluttify` from
    `.symlinks/plugins/foundation_fluttify/ios`
    -> Fetching podspec for `image_crop` from `.symlinks/plugins/image_crop/ios`
    -> Fetching podspec for `image_picker` from
    `.symlinks/plugins/image_picker/ios`
    -> Fetching podspec for `path_provider` from
    `.symlinks/plugins/path_provider/ios`
    -> Fetching podspec for `path_provider_macos` from
    `.symlinks/plugins/path_provider_macos/ios`
    -> Fetching podspec for `permission_handler` from
    `.symlinks/plugins/permission_handler/ios`
    -> Fetching podspec for `shared_preferences` from
    `.symlinks/plugins/shared_preferences/ios`
    -> Fetching podspec for `shared_preferences_macos` from
    `.symlinks/plugins/shared_preferences_macos/ios`
    -> Fetching podspec for `shared_preferences_web` from
    `.symlinks/plugins/shared_preferences_web/ios`
    -> Fetching podspec for `tencent_im_plugin` from
    `.symlinks/plugins/tencent_im_plugin/ios`
    -> Fetching podspec for `url_launcher` from
    `.symlinks/plugins/url_launcher/ios`
    -> Fetching podspec for `url_launcher_macos` from
    `.symlinks/plugins/url_launcher_macos/ios`
    -> Fetching podspec for `url_launcher_web` from
    `.symlinks/plugins/url_launcher_web/ios`
    -> Fetching podspec for `video_player` from
    `.symlinks/plugins/video_player/ios`
    -> Fetching podspec for `video_player_web` from
    `.symlinks/plugins/video_player_web/ios`
    -> Fetching podspec for `webview_flutter` from
    `.symlinks/plugins/webview_flutter/ios`

    Resolving dependencies of `Podfile`
      CDN: trunk Relative path: CocoaPods-version.yml exists! Returning local
      because checking is only perfomed in repo update
      CDN: trunk Relative path: all_pods_versions_8_f_f.txt exists! Returning
      local because checking is only perfomed in repo update
      CDN: trunk Relative path:
      Specs/8/f/f/AMapFoundation/1.6.2/AMapFoundation.podspec.json exists!
      Returning local because checking is only perfomed in repo update
      CDN: trunk Relative path: all_pods_versions_0_3_9.txt exists! Returning
      local because checking is only perfomed in repo update
      CDN: trunk Relative path:
      Specs/0/3/9/AMapLocation/2.6.4/AMapLocation.podspec.json exists! Returning
      local because checking is only perfomed in repo update
      CDN: trunk Relative path downloaded: all_pods_versions_6_8_7.txt, save
      ETag: "3b466521ecba8b50ca2545df349db428-ssl"
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/2.3.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.3.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/2.4.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/5.4.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.4.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/4.0.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.0.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/2.4.1/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.1/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/2.6.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.6.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/4.4.1/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.1/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/6.1.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/4.3.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.3.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/5.0.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.0.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/5.3.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.3.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/4.5.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.5.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/3.0.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/4.4.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/3.1.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.1.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/5.2.1/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.2.1/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/3.3.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.3.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/5.1.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.1.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/6.6.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.6.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/7.1.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/7.1.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/4.1.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.1.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/2.5.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.5.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/6.1.1/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.1/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/6.9.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.9.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/5.7.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.7.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/3.2.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.2.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/6.5.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.5.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/3.0.1/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.1/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/5.5.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.5.0/AMapSearch.podspec.json
      CDN: trunk Redirecting from
      https://cdn.cocoapods.org/Specs/6/8/7/AMapSearch/4.2.0/AMapSearch.podspec.
      json to
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.2.0/AMapSearch.podspec.json
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.6.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.2.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.6.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/7.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.9.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.7.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.2.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.2.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 4
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.6.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.2.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.6.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.7.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.2.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/7.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.9.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.2.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 3
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.6.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.2.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.6.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.7.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.2.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/7.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.9.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.2.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 2
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.6.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.4.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.4.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.2.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.6.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.3.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.7.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.2.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/2.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.1.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/4.2.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/6.9.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/3.0.1/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/5.5.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
      CDN: trunk URL couldn't be downloaded:
      https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapS
      earch/7.1.0/AMapSearch.podspec.json Response: Timeout was reached,
      retries: 1
    [!] CDN: trunk Repo update failed - 30 error(s):
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/2.3.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/2.4.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/2.4.1/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/2.5.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/2.6.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/3.0.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/3.0.1/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/3.1.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/3.2.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/3.3.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/4.0.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/4.1.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/4.2.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/4.3.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/4.4.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/4.4.1/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/4.5.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/5.0.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/5.1.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/5.2.1/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/5.3.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/5.4.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/5.5.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/5.7.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/6.1.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/6.1.1/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/6.5.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/6.6.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/6.9.0/AMapSearch.podspec.json Response: Timeout was reached
    CDN: trunk URL couldn't be downloaded:
    https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs/6/8/7/AMapSea
    rch/7.1.0/AMapSearch.podspec.json Response: Timeout was reached

    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/cdn_so
    urce.rb:475:in `rescue in concurrent_requests_catching_errors'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/cdn_so
    urce.rb:470:in `concurrent_requests_catching_errors'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/cdn_so
    urce.rb:121:in `versions'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/specif
    ication/set.rb:99:in `block in versions_by_source'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/specif
    ication/set.rb:98:in `each'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/specif
    ication/set.rb:98:in `each_with_object'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/specif
    ication/set.rb:98:in `versions_by_source'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/specif
    ication/set.rb:56:in `specification_name'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/cdn_so
    urce.rb:216:in `search'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/source
    /aggregate.rb:83:in `block in search'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/source
    /aggregate.rb:83:in `select'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-core-1.9.1/lib/cocoapods-core/source
    /aggregate.rb:83:in `search'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/resolver.rb:416:
    in `create_set_from_sources'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/resolver.rb:385:
    in `find_cached_set'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/resolver.rb:360:
    in `specifications_for_dependency'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/resolver.rb:165:
    in `search_for'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/resolver.rb:274:
    in `block in sort_dependencies'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/resolver.rb:267:
    in `each'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/resolver.rb:267:
    in `sort_by'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/resolver.rb:267:
    in `sort_dependencies'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/delegates/specif
    ication_provider.rb:53:in `block in sort_dependencies'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/delegates/specif
    ication_provider.rb:70:in `with_no_such_dependency_error_handling'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/delegates/specif
    ication_provider.rb:52:in `sort_dependencies'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/resolution.rb:75
    4:in `push_state_for_requirements'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/resolution.rb:74
    6:in `require_nested_dependencies_for'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/resolution.rb:72
    9:in `activate_new_spec'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/resolution.rb:68
    6:in `attempt_to_activate'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/resolution.rb:25
    4:in `process_topmost_state'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/resolution.rb:18
    2:in `resolve'
    /Library/Ruby/Gems/2.3.0/gems/molinillo-0.6.6/lib/molinillo/resolver.rb:43:i
    n `resolve'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/resolver.rb:94:i
    n `resolve'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/installer/analyz
    er.rb:1065:in `block in resolve_dependencies'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/user_interface.r
    b:64:in `section'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/installer/analyz
    er.rb:1063:in `resolve_dependencies'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/installer/analyz
    er.rb:124:in `analyze'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/installer.rb:410
    :in `analyze'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/installer.rb:235
    :in `block in resolve_dependencies'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/user_interface.r
    b:64:in `section'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/installer.rb:234
    :in `resolve_dependencies'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/installer.rb:156
    :in `install!'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/command/install.
    rb:52:in `run'
    /Library/Ruby/Gems/2.3.0/gems/claide-1.0.3/lib/claide/command.rb:334:in
    `run'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/lib/cocoapods/command.rb:52:in
    `run'
    /Library/Ruby/Gems/2.3.0/gems/cocoapods-1.9.1/bin/pod:55:in `<top
    (required)>'
    /usr/local/bin/pod:22:in `load'
    /usr/local/bin/pod:22:in `<main>'

Error running pod install
Error launching application on iPhone 11 Pro Max.

uri2ImageData error

0.15.0版本出现

Compiler message:
../../../../.pub-cache/hosted/pub.dartlang.org/amap_map_fluttify-0.23.0/lib/src/facade/amap_controller.dart:145:37: Error: 'uri2ImageData' is imported from both 'package:foundation_fluttify/src/function/functions.dart' and 'package:amap_map_fluttify/src/facade/utils.dart'.
            final imageData = await uri2ImageData(
                                    ^^^^^^^^^^^^^

没法跑起来

安卓模拟器地图启动不成功

flutter run --enable-software-rendering -v

[  +75 ms] Using software rendering with device sdk gphone x86 64. You may get better performance with hardware mode by configuring hardware rendering for your device.
[  +15 ms] Launching lib/main.dart on sdk gphone x86 64 in debug mode...
[  +14 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[  +51 ms] Exit code 0 from: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[        ] --------- beginning of main
           04-14 01:04:25.691 W/viders.calenda(12442): Reducing the number of considered missed Gc histogram windows from 113 to 100
[   +5 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb version
[        ] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 logcat -v time -T 04-14 01:04:25.691
[  +14 ms] Android Debug Bridge version 1.0.41
           Version 29.0.6-6198805
           Installed as /Users/tmmy/Library/Android/sdk/platform-tools/adb
[   +2 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb start-server
[   +9 ms] Building APK
[  +19 ms] Running Gradle task 'assembleDebug'...
[   +1 ms] gradle.properties already sets `android.enableR8`
[   +3 ms] Using gradle from /Users/tmmy/shoudeng/shoudeng/android/gradlew.
[   +9 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[  +12 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[        ] {"CFBundleName":"Android
Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$APP_PACKAGE\/Contents\/lib\/extensions.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_P
ACKAGE\/Contents\/lib\/log4j.jar:$APP_PACKAGE\/Contents\/lib\/trove4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVMVersion":"1.8*,1.8+","WorkingDirectory":"$APP_PACKAGE\/Contents\/bin","MainClass":"com.i
ntellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudio3.6","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.home.path":"$APP_PACKAGE\/Contents"}},"NSDesktopFolderUsag
eDescription":"An application in Android Studio requests access to the user's Desktop
folder.","LSArchitecturePriority":["x86_64"],"CFBundleVersion":"AI-192.7142.36.36.6308749","CFBundleDevelopmentRegion":"English","NSCameraUsageDescription":"An application in Android Studio requests
access to the device's camera.","CFBundleDocumentTypes":[{"CFBundleTypeName":"Android Studio Project
File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleTypeIconFile":"studio.icns"},{"CFBundleTypeName":"All
documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL","CFB
undleIconFile":"studio.icns","NSHighResolutionCapable":true,"CFBundleShortVersionString":"3.6","NSMicrophoneUsageDescription":"An application in Android Studio requests access to the device's
microphone.","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"studio","NSLocationUsageDescription":"An application in Android Studio requests access to the user's location
information.","LSRequiresNativeExecution":"YES","CFBundleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stacktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.stu
dio","LSApplicationCategoryType":"public.app-category.developer-tools","CFBundleSignature":"????","LSMinimumSystemVersion":"10.8","NSDocumentsFolderUsageDescription":"An application in Android Studio
requests access to the user's Documents folder.","NSDownloadsFolderUsageDescription":"An application in Android Studio requests access to the user's Downloads
folder.","NSNetworkVolumesUsageDescription":"An application in Android Studio requests access to files on a network volume.","CFBundleGetInfoString":"Android Studio 3.6, build AI-192.7142.36.36.6308749.
Copyright JetBrains s.r.o., (c) 2000-2020","NSRemovableVolumesUsageDescription":"An application in Android Studio requests access to files on a removable volume."}
[   +7 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[ +353 ms] Exit code 0 from: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[        ] openjdk version "1.8.0_212-release"
           OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211)
           OpenJDK 64-Bit Server VM (build 25.212-b4-5784211, mixed mode)
[   +2 ms] executing: [/Users/tmmy/shoudeng/shoudeng/android/] /Users/tmmy/shoudeng/shoudeng/android/gradlew -Pverbose=true -Ptarget=/Users/tmmy/shoudeng/shoudeng/lib/main.dart
-Ptrack-widget-creation=true -Pfilesystem-scheme=org-dartlang-root -Ptarget-platform=android-x64 assembleDebug
[+1687 ms] Starting a Gradle Daemon, 1 stopped Daemon could not be reused, use --status for details
[+9586 ms] > Configure project :amap_all_fluttify
[        ] WARNING: The option 'android.enableR8' is deprecated and should not be used anymore.
[        ] It will be removed in a future version of the Android Gradle plugin, and will no longer allow you to disable R8.
[+3908 ms] > Task :amap_all_fluttify:preBuild UP-TO-DATE
[        ] > Task :amap_all_fluttify:preDebugBuild UP-TO-DATE
[        ] > Task :amap_core_fluttify:preBuild UP-TO-DATE
[        ] > Task :amap_core_fluttify:preDebugBuild UP-TO-DATE
[        ] > Task :foundation_fluttify:preBuild UP-TO-DATE
[        ] > Task :foundation_fluttify:preDebugBuild UP-TO-DATE
[        ] > Task :amap_location_fluttify:preBuild UP-TO-DATE
[  +88 ms] > Task :foundation_fluttify:compileDebugAidl NO-SOURCE
[        ] > Task :amap_core_fluttify:compileDebugAidl NO-SOURCE
[        ] > Task :amap_location_fluttify:preDebugBuild UP-TO-DATE
[        ] > Task :amap_location_fluttify:compileDebugAidl NO-SOURCE
[  +99 ms] > Task :amap_map_fluttify:preBuild UP-TO-DATE
[        ] > Task :amap_map_fluttify:preDebugBuild UP-TO-DATE
[        ] > Task :url_launcher:preBuild UP-TO-DATE
[        ] > Task :url_launcher:preDebugBuild UP-TO-DATE
[        ] > Task :url_launcher_macos:preBuild UP-TO-DATE
[        ] > Task :url_launcher_macos:preDebugBuild UP-TO-DATE
[        ] > Task :url_launcher_macos:compileDebugAidl NO-SOURCE
[        ] > Task :url_launcher_web:preBuild UP-TO-DATE
[        ] > Task :url_launcher_web:preDebugBuild UP-TO-DATE
[        ] > Task :url_launcher_web:compileDebugAidl NO-SOURCE
[        ] > Task :url_launcher:compileDebugAidl NO-SOURCE
[        ] > Task :amap_map_fluttify:compileDebugAidl NO-SOURCE
[        ] > Task :amap_search_fluttify:preBuild UP-TO-DATE
[        ] > Task :amap_search_fluttify:preDebugBuild UP-TO-DATE
[        ] > Task :amap_search_fluttify:compileDebugAidl NO-SOURCE
[        ] > Task :amap_all_fluttify:compileDebugAidl NO-SOURCE
[  +96 ms] > Task :amap_all_fluttify:mergeDebugJniLibFolders
[ +198 ms] > Task :amap_all_fluttify:mergeDebugNativeLibs
[        ] > Task :amap_all_fluttify:stripDebugDebugSymbols
[        ] > Task :amap_all_fluttify:copyDebugJniLibsProjectAndLocalJars
[ +203 ms] > Task :amap_location_fluttify:packageDebugRenderscript NO-SOURCE
[  +99 ms] > Task :amap_map_fluttify:packageDebugRenderscript NO-SOURCE
[        ] > Task :amap_search_fluttify:packageDebugRenderscript NO-SOURCE
[        ] > Task :amap_all_fluttify:compileDebugRenderscript NO-SOURCE
[        ] > Task :amap_all_fluttify:generateDebugBuildConfig
[  +99 ms] > Task :amap_all_fluttify:generateDebugResValues
[        ] > Task :amap_all_fluttify:generateDebugResources
[        ] > Task :amap_all_fluttify:packageDebugResources
[ +100 ms] > Task :foundation_fluttify:packageDebugRenderscript NO-SOURCE
[        ] > Task :amap_core_fluttify:compileDebugRenderscript NO-SOURCE
[        ] > Task :amap_core_fluttify:generateDebugResValues
[        ] > Task :amap_core_fluttify:generateDebugResources
[        ] > Task :amap_core_fluttify:packageDebugResources
[        ] > Task :amap_core_fluttify:parseDebugLocalResources
[        ] > Task :amap_all_fluttify:parseDebugLocalResources
[        ] > Task :foundation_fluttify:generateDebugResValues
[        ] > Task :foundation_fluttify:compileDebugRenderscript NO-SOURCE
[        ] > Task :foundation_fluttify:generateDebugResources
[        ] > Task :foundation_fluttify:packageDebugResources
[  +95 ms] > Task :foundation_fluttify:parseDebugLocalResources
[        ] > Task :amap_core_fluttify:packageDebugRenderscript NO-SOURCE
[        ] > Task :amap_location_fluttify:compileDebugRenderscript NO-SOURCE
[        ] > Task :amap_location_fluttify:generateDebugResValues
[        ] > Task :amap_location_fluttify:generateDebugResources
[        ] > Task :amap_location_fluttify:packageDebugResources
[        ] > Task :amap_location_fluttify:parseDebugLocalResources
[        ] > Task :foundation_fluttify:processDebugManifest
[ +499 ms] > Task :amap_core_fluttify:processDebugManifest
[        ] > Task :amap_location_fluttify:processDebugManifest
[        ] > Task :amap_all_fluttify:processDebugManifest
[        ] > Task :url_launcher:packageDebugRenderscript NO-SOURCE
[        ] > Task :amap_map_fluttify:compileDebugRenderscript NO-SOURCE
[        ] > Task :amap_map_fluttify:generateDebugResValues
[        ] > Task :amap_map_fluttify:generateDebugResources
[        ] > Task :amap_map_fluttify:packageDebugResources
[        ] > Task :amap_map_fluttify:parseDebugLocalResources
[        ] > Task :url_launcher_macos:packageDebugRenderscript NO-SOURCE
[        ] > Task :url_launcher_web:packageDebugRenderscript NO-SOURCE
[  +94 ms] > Task :url_launcher:compileDebugRenderscript NO-SOURCE
[        ] > Task :url_launcher:generateDebugResValues
[        ] > Task :url_launcher:generateDebugResources
[        ] > Task :url_launcher:packageDebugResources
[        ] > Task :url_launcher:parseDebugLocalResources
[        ] > Task :amap_map_fluttify:processDebugManifest
[        ] > Task :url_launcher_macos:compileDebugRenderscript NO-SOURCE
[        ] > Task :url_launcher_macos:generateDebugResValues
[        ] > Task :url_launcher_macos:generateDebugResources
[        ] > Task :url_launcher_macos:packageDebugResources
[        ] > Task :url_launcher:processDebugManifest
[        ] > Task :url_launcher_macos:parseDebugLocalResources
[        ] > Task :url_launcher_web:compileDebugRenderscript NO-SOURCE
[        ] > Task :url_launcher_web:generateDebugResValues
[        ] > Task :url_launcher_web:generateDebugResources
[ +100 ms] > Task :url_launcher_web:packageDebugResources
[        ] > Task :url_launcher_macos:processDebugManifest
[        ] > Task :url_launcher_web:parseDebugLocalResources
[        ] > Task :foundation_fluttify:generateDebugRFile
[        ] > Task :url_launcher_macos:generateDebugRFile
[        ] > Task :amap_search_fluttify:compileDebugRenderscript NO-SOURCE
[        ] > Task :amap_search_fluttify:generateDebugResValues
[        ] > Task :amap_search_fluttify:generateDebugResources
[        ] > Task :amap_search_fluttify:packageDebugResources
[  +99 ms] > Task :url_launcher_web:processDebugManifest
[        ] > Task :amap_search_fluttify:processDebugManifest
[        ] > Task :amap_search_fluttify:parseDebugLocalResources
[        ] > Task :amap_core_fluttify:generateDebugRFile
[        ] > Task :amap_core_fluttify:generateDebugBuildConfig
[        ] > Task :url_launcher_web:generateDebugRFile
[  +99 ms] > Task :amap_location_fluttify:generateDebugRFile
[        ] > Task :url_launcher:generateDebugRFile
[        ] > Task :amap_search_fluttify:generateDebugRFile
[        ] > Task :foundation_fluttify:generateDebugBuildConfig
[+8497 ms] > Task :foundation_fluttify:compileDebugKotlin
[        ] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/FoundationFluttifyPlugin.kt: (56, 41): Unchecked cast: Any! to
Map
[   +1 ms] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/PlatformService.kt: (31, 87): Unchecked cast: Any? to List
[   +1 ms] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/PlatformService.kt: (34, 34): Unchecked cast: Any? to List
[   +1 ms] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/PlatformService.kt: (101, 41): Unchecked cast: Any? to
Map
[   +1 ms] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/android/app/ApplicationHandler.kt: (7, 40): Parameter 'args' is
never used
[        ] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/android/app/NotificationHandler.kt: (42, 34): 'constructor
Builder(Context!)' is deprecated. Deprecated in Java
[        ] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/android/app/PendingIntentHandler.kt: (5, 42): Parameter 'args'
is never used
[        ] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/android/app/PendingIntentHandler.kt: (6, 11): The expression is
unused
[   +3 ms] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/android/content/IntentHandler.kt: (5, 35): Parameter 'args' is
never used
[        ] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/android/content/IntentHandler.kt: (6, 11): The expression is
unused
[        ] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/android/graphics/BitmapHandler.kt: (21, 34): Unchecked cast:
Map to List>
[        ] w: /Users/tmmy/.pub-cache/hosted/pub.flutter-io.cn/foundation_fluttify-0.5.1/android/src/main/kotlin/me/yohom/foundation_fluttify/android/os/BundleHandler.kt: (7, 35): Parameter 'args' is never
used
[        ] > Task :amap_map_fluttify:generateDebugRFile
[        ] > Task :amap_location_fluttify:generateDebugBuildConfig
[        ] > Task :foundation_fluttify:javaPreCompileDebug
[ +584 ms] > Task :foundation_fluttify:compileDebugJavaWithJavac
[        ] > Task :amap_all_fluttify:generateDebugRFile
[        ] > Task :amap_map_fluttify:generateDebugBuildConfig
[        ] > Task :url_launcher:generateDebugBuildConfig
[        ] > Task :url_launcher_macos:generateDebugBuildConfig
[        ] > Task :foundation_fluttify:bundleLibCompileDebug
[        ] > Task :url_launcher_macos:javaPreCompileDebug
[ +100 ms] > Task :url_launcher_macos:compileDebugJavaWithJavac
[        ] > Task :amap_core_fluttify:javaPreCompileDebug
[  +98 ms] > Task :amap_core_fluttify:compileDebugJavaWithJavac
[        ] > Task :url_launcher_macos:bundleLibCompileDebug
[        ] > Task :url_launcher_web:generateDebugBuildConfig
[ +102 ms] > Task :amap_core_fluttify:bundleLibCompileDebug
[        ] > Task :url_launcher_web:javaPreCompileDebug
[        ] > Task :url_launcher_web:compileDebugJavaWithJavac
[        ] > Task :url_launcher_web:bundleLibCompileDebug
[ +100 ms] > Task :amap_search_fluttify:generateDebugBuildConfig
[        ] > Task :url_launcher:javaPreCompileDebug
[ +296 ms] > Task :url_launcher:compileDebugJavaWithJavac
[        ] > Task :amap_all_fluttify:mergeDebugShaders
[        ] > Task :amap_all_fluttify:compileDebugShaders
[        ] > Task :amap_all_fluttify:generateDebugAssets
[        ] > Task :amap_all_fluttify:packageDebugAssets
[        ] > Task :amap_all_fluttify:packageDebugRenderscript NO-SOURCE
[        ] > Task :amap_all_fluttify:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :amap_all_fluttify:processDebugJavaRes NO-SOURCE
[  +13 ms] 注: 某些输入文件使用或覆盖了已过时的 API。
[   +2 ms] 注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
[  +81 ms] > Task :amap_location_fluttify:javaPreCompileDebug
[+2101 ms] > Task :amap_location_fluttify:compileDebugJavaWithJavac
[        ] > Task :amap_all_fluttify:mergeDebugJavaResource
[        ] > Task :amap_core_fluttify:mergeDebugJniLibFolders
[        ] > Task :amap_search_fluttify:javaPreCompileDebug
[        ] 注: 某些输入文件使用或覆盖了已过时的 API。
[        ] 注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
[        ] 注: 某些输入文件使用了未经检查或不安全的操作。
[        ] 注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
[+4397 ms] > Task :amap_search_fluttify:compileDebugJavaWithJavac
[        ] 注: 某些输入文件使用或覆盖了已过时的 API。
[        ] 注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
[   +1 ms] 注: 某些输入文件使用了未经检查或不安全的操作。
[        ] 注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
[  +95 ms] > Task :amap_core_fluttify:mergeDebugNativeLibs
[        ] > Task :amap_location_fluttify:bundleLibCompileDebug
[ +100 ms] > Task :amap_core_fluttify:stripDebugDebugSymbols
[        ] > Task :amap_core_fluttify:copyDebugJniLibsProjectAndLocalJars
[        ] > Task :amap_core_fluttify:extractDebugAnnotations
[        ] > Task :amap_search_fluttify:bundleLibCompileDebug
[        ] > Task :amap_core_fluttify:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :amap_core_fluttify:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :amap_core_fluttify:mergeDebugShaders
[        ] > Task :amap_core_fluttify:compileDebugShaders
[        ] > Task :amap_core_fluttify:generateDebugAssets
[        ] > Task :amap_core_fluttify:packageDebugAssets
[        ] > Task :amap_core_fluttify:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :amap_core_fluttify:processDebugJavaRes NO-SOURCE
[        ] > Task :amap_core_fluttify:compileDebugSources
[        ] > Task :amap_location_fluttify:mergeDebugJniLibFolders
[        ] > Task :url_launcher:bundleLibCompileDebug
[        ] > Task :amap_core_fluttify:mergeDebugJavaResource
[        ] > Task :amap_core_fluttify:syncDebugLibJars
[  +97 ms] > Task :amap_core_fluttify:bundleDebugAar
[        ] > Task :amap_core_fluttify:assembleDebug
[        ] > Task :amap_map_fluttify:javaPreCompileDebug
[+7200 ms] > Task :amap_map_fluttify:compileDebugJavaWithJavac
[        ] 注: 某些输入文件使用或覆盖了已过时的 API。
[        ] 注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
[        ] 注: 某些输入文件使用了未经检查或不安全的操作。
[        ] 注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
[ +298 ms] > Task :amap_location_fluttify:extractDebugAnnotations
[        ] > Task :amap_location_fluttify:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :amap_location_fluttify:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :amap_location_fluttify:mergeDebugShaders
[        ] > Task :amap_location_fluttify:compileDebugShaders
[        ] > Task :amap_location_fluttify:generateDebugAssets
[        ] > Task :amap_location_fluttify:packageDebugAssets
[        ] > Task :amap_location_fluttify:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :amap_location_fluttify:processDebugJavaRes NO-SOURCE
[        ] > Task :amap_map_fluttify:bundleLibCompileDebug
[        ] > Task :amap_location_fluttify:mergeDebugJavaResource
[  +94 ms] > Task :amap_location_fluttify:syncDebugLibJars
[        ] > Task :amap_location_fluttify:compileDebugSources
[        ] > Task :amap_map_fluttify:mergeDebugJniLibFolders
[        ] > Task :amap_all_fluttify:javaPreCompileDebug
[        ] > Task :amap_location_fluttify:mergeDebugNativeLibs
[        ] > Task :amap_all_fluttify:compileDebugJavaWithJavac
[        ] > Task :amap_map_fluttify:mergeDebugNativeLibs
[ +103 ms] > Task :amap_all_fluttify:extractDebugAnnotations
[        ] > Task :amap_all_fluttify:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :amap_all_fluttify:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :amap_all_fluttify:syncDebugLibJars
[   +2 ms] > Task :amap_all_fluttify:bundleDebugAar
[   +1 ms] > Task :amap_all_fluttify:compileDebugSources
[        ] > Task :amap_all_fluttify:assembleDebug
[        ] > Task :amap_location_fluttify:stripDebugDebugSymbols
[        ] > Task :amap_location_fluttify:copyDebugJniLibsProjectAndLocalJars
[        ] > Task :amap_location_fluttify:bundleDebugAar
[        ] > Task :amap_location_fluttify:assembleDebug
[        ] > Task :amap_map_fluttify:stripDebugDebugSymbols
[        ] > Task :amap_map_fluttify:copyDebugJniLibsProjectAndLocalJars
[  +92 ms] > Task :amap_map_fluttify:extractDebugAnnotations
[  +98 ms] > Task :amap_map_fluttify:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :amap_map_fluttify:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :amap_map_fluttify:mergeDebugShaders
[        ] > Task :amap_map_fluttify:compileDebugShaders
[        ] > Task :amap_map_fluttify:generateDebugAssets
[        ] > Task :amap_map_fluttify:packageDebugAssets
[        ] > Task :amap_map_fluttify:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :amap_map_fluttify:processDebugJavaRes NO-SOURCE
[        ] > Task :amap_map_fluttify:compileDebugSources
[        ] > Task :amap_search_fluttify:mergeDebugJniLibFolders
[        ] > Task :amap_map_fluttify:mergeDebugJavaResource
[ +196 ms] > Task :amap_map_fluttify:syncDebugLibJars
[ +103 ms] > Task :amap_map_fluttify:bundleDebugAar
[        ] > Task :amap_map_fluttify:assembleDebug
[        ] > Task :amap_search_fluttify:extractDebugAnnotations
[        ] > Task :amap_search_fluttify:mergeDebugNativeLibs
[        ] > Task :amap_search_fluttify:stripDebugDebugSymbols
[  +97 ms] > Task :amap_search_fluttify:copyDebugJniLibsProjectAndLocalJars
[        ] > Task :amap_search_fluttify:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :amap_search_fluttify:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :amap_search_fluttify:mergeDebugShaders
[        ] > Task :amap_search_fluttify:compileDebugShaders
[        ] > Task :amap_search_fluttify:generateDebugAssets
[        ] > Task :amap_search_fluttify:packageDebugAssets
[        ] > Task :amap_search_fluttify:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :amap_search_fluttify:processDebugJavaRes NO-SOURCE
[        ] > Task :amap_search_fluttify:compileDebugSources
[        ] > Task :amap_search_fluttify:mergeDebugJavaResource
[  +99 ms] > Task :amap_search_fluttify:syncDebugLibJars
[  +98 ms] > Task :amap_search_fluttify:bundleDebugAar
[        ] > Task :amap_search_fluttify:assembleDebug
[ +197 ms] > Task :amap_all_fluttify:bundleLibCompileDebug
[+2011 ms] > Task :app:compileFlutterBuildDebug
[        ] [  +26 ms] executing: [/Users/tmmy/tools/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[   +4 ms] [  +71 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] [        ] f139b11009aeb8ed2a3a3aa8b0066e482709dde3
[        ] [        ] executing: [/Users/tmmy/tools/flutter/] git describe --match v*.*.* --first-parent --long --tags
[        ] [  +14 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[        ] [        ] v1.12.13+hotfix.9-0-gf139b1100
[        ] [  +10 ms] executing: [/Users/tmmy/tools/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[        ] [   +6 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] [        ] origin/stable
[        ] [        ] executing: [/Users/tmmy/tools/flutter/] git ls-remote --get-url origin
[        ] [   +7 ms] Exit code 0 from: git ls-remote --get-url origin
[  +20 ms] [        ] https://github.com/flutter/flutter.git
[        ] [  +66 ms] executing: [/Users/tmmy/tools/flutter/] git rev-parse --abbrev-ref HEAD
[        ] [  +17 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] [        ] stable
[        ] [  +36 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[        ] [   +5 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[   +7 ms] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[        ] [ +105 ms] Initializing file store
[        ] [  +29 ms] kernel_snapshot: Starting due to {}
[        ] [  +24 ms] /Users/tmmy/tools/flutter/bin/cache/dart-sdk/bin/dart /Users/tmmy/tools/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root
/Users/tmmy/tools/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --target=flutter -Ddart.developer.causal_async_stacks=true -Ddart.vm.profile=false -Ddart.vm.product=false
--bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation
--no-link-platform --packages /Users/tmmy/shoudeng/shoudeng/.packages --output-dill /Users/tmmy/shoudeng/shoudeng/.dart_tool/flutter_build/9c71ca2644f8845a3b6fbf018337ca81/app.dill --depfile
/Users/tmmy/shoudeng/shoudeng/.dart_tool/flutter_build/9c71ca2644f8845a3b6fbf018337ca81/kernel_snapshot.d package:shoudeng/main.dart
[+13351 ms] [+14390 ms] kernel_snapshot: Complete
[+1797 ms] [+1838 ms] debug_android_application: Starting due to {}
[ +302 ms] [ +312 ms] debug_android_application: Complete
[ +597 ms] [ +544 ms] Persisting file store
[        ] [  +11 ms] Done persisting file store
[        ] [   +8 ms] build succeeded.
[        ] [  +16 ms] "flutter assemble" took 17,347ms.
[ +204 ms] > Task :app:packLibsflutterBuildDebug
[        ] > Task :app:preBuild UP-TO-DATE
[        ] > Task :app:preDebugBuild UP-TO-DATE
[        ] > Task :location_permissions:preBuild UP-TO-DATE
[        ] > Task :location_permissions:preDebugBuild UP-TO-DATE
[        ] > Task :location_permissions:compileDebugAidl NO-SOURCE
[  +93 ms] > Task :shared_preferences:preBuild UP-TO-DATE
[        ] > Task :shared_preferences:preDebugBuild UP-TO-DATE
[        ] > Task :shared_preferences_macos:preBuild UP-TO-DATE
[        ] > Task :shared_preferences_macos:preDebugBuild UP-TO-DATE
[        ] > Task :shared_preferences_macos:compileDebugAidl NO-SOURCE
[        ] > Task :shared_preferences_web:preBuild UP-TO-DATE
[        ] > Task :shared_preferences_web:preDebugBuild UP-TO-DATE
[        ] > Task :shared_preferences_web:compileDebugAidl NO-SOURCE
[        ] > Task :shared_preferences:compileDebugAidl NO-SOURCE
[        ] > Task :app:compileDebugAidl NO-SOURCE
[        ] > Task :location_permissions:packageDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences:packageDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences_macos:packageDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences_web:packageDebugRenderscript NO-SOURCE
[        ] > Task :app:compileDebugRenderscript NO-SOURCE
[        ] > Task :app:generateDebugBuildConfig
[ +196 ms] > Task :amap_all_fluttify:compileDebugLibraryResources
[        ] > Task :amap_core_fluttify:compileDebugLibraryResources
[        ] > Task :amap_map_fluttify:compileDebugLibraryResources
[        ] > Task :amap_search_fluttify:compileDebugLibraryResources
[        ] > Task :app:cleanMergeDebugAssets UP-TO-DATE
[        ] > Task :amap_location_fluttify:compileDebugLibraryResources
[        ] > Task :app:mergeDebugShaders
[        ] > Task :app:compileDebugShaders
[        ] > Task :app:generateDebugAssets
[        ] > Task :foundation_fluttify:mergeDebugShaders
[        ] > Task :foundation_fluttify:compileDebugShaders
[        ] > Task :foundation_fluttify:generateDebugAssets
[        ] > Task :foundation_fluttify:packageDebugAssets
[  +99 ms] > Task :location_permissions:mergeDebugShaders
[        ] > Task :location_permissions:compileDebugShaders
[        ] > Task :location_permissions:generateDebugAssets
[        ] > Task :location_permissions:packageDebugAssets
[        ] > Task :shared_preferences:mergeDebugShaders
[        ] > Task :shared_preferences:compileDebugShaders
[        ] > Task :shared_preferences:generateDebugAssets
[        ] > Task :shared_preferences:packageDebugAssets
[        ] > Task :shared_preferences_macos:mergeDebugShaders
[        ] > Task :shared_preferences_macos:compileDebugShaders
[        ] > Task :shared_preferences_macos:generateDebugAssets
[        ] > Task :shared_preferences_macos:packageDebugAssets
[        ] > Task :shared_preferences_web:mergeDebugShaders
[        ] > Task :shared_preferences_web:compileDebugShaders
[        ] > Task :shared_preferences_web:generateDebugAssets
[        ] > Task :shared_preferences_web:packageDebugAssets
[        ] > Task :url_launcher:mergeDebugShaders
[        ] > Task :url_launcher:compileDebugShaders
[        ] > Task :url_launcher:generateDebugAssets
[        ] > Task :url_launcher:packageDebugAssets
[        ] > Task :url_launcher_macos:mergeDebugShaders
[        ] > Task :url_launcher_macos:compileDebugShaders
[        ] > Task :url_launcher_macos:generateDebugAssets
[        ] > Task :url_launcher_macos:packageDebugAssets
[        ] > Task :url_launcher_web:mergeDebugShaders
[        ] > Task :url_launcher_web:compileDebugShaders
[        ] > Task :url_launcher_web:generateDebugAssets
[  +92 ms] > Task :url_launcher_web:packageDebugAssets
[        ] > Task :app:mergeDebugAssets
[+1099 ms] > Task :app:copyFlutterAssetsDebug
[        ] > Task :app:mainApkListPersistenceDebug
[        ] > Task :app:generateDebugResValues
[        ] > Task :app:generateDebugResources
[        ] > Task :location_permissions:generateDebugResValues
[        ] > Task :location_permissions:compileDebugRenderscript NO-SOURCE
[        ] > Task :location_permissions:generateDebugResources
[        ] > Task :location_permissions:packageDebugResources
[        ] > Task :shared_preferences:generateDebugResValues
[  +99 ms] > Task :shared_preferences:compileDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences:generateDebugResources
[        ] > Task :shared_preferences:packageDebugResources
[        ] > Task :shared_preferences_macos:compileDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences_macos:generateDebugResValues
[        ] > Task :shared_preferences_macos:generateDebugResources
[        ] > Task :shared_preferences_macos:packageDebugResources
[        ] > Task :shared_preferences_web:generateDebugResValues
[        ] > Task :shared_preferences_web:compileDebugRenderscript NO-SOURCE
[        ] > Task :shared_preferences_web:generateDebugResources
[        ] > Task :shared_preferences_web:packageDebugResources
[ +797 ms] > Task :amap_all_fluttify:extractDeepLinksDebug
[        ] > Task :amap_core_fluttify:extractDeepLinksDebug
[        ] > Task :amap_location_fluttify:extractDeepLinksDebug
[        ] > Task :amap_map_fluttify:extractDeepLinksDebug
[        ] > Task :amap_search_fluttify:extractDeepLinksDebug
[        ] > Task :app:createDebugCompatibleScreenManifests
[        ] > Task :app:extractDeepLinksDebug
[        ] > Task :foundation_fluttify:extractDeepLinksDebug
[        ] > Task :location_permissions:extractDeepLinksDebug
[  +96 ms] > Task :app:mergeDebugResources
[        ] > Task :shared_preferences:extractDeepLinksDebug
[        ] > Task :location_permissions:processDebugManifest
[        ] > Task :shared_preferences_macos:extractDeepLinksDebug
[        ] > Task :shared_preferences_web:extractDeepLinksDebug
[        ] > Task :url_launcher:extractDeepLinksDebug
[        ] > Task :url_launcher_macos:extractDeepLinksDebug
[        ] > Task :url_launcher_web:extractDeepLinksDebug
[        ] > Task :shared_preferences_web:processDebugManifest
[ +100 ms] > Task :shared_preferences:processDebugManifest
[        ] > Task :foundation_fluttify:compileDebugLibraryResources
[        ] > Task :shared_preferences_macos:processDebugManifest
[ +101 ms] > Task :app:processDebugManifest
[        ] > Task :location_permissions:compileDebugLibraryResources
[  +96 ms] > Task :shared_preferences:compileDebugLibraryResources
[        ] > Task :location_permissions:parseDebugLocalResources
[        ] > Task :shared_preferences:parseDebugLocalResources
[        ] > Task :shared_preferences_macos:parseDebugLocalResources
[        ] > Task :shared_preferences_web:parseDebugLocalResources
[        ] > Task :shared_preferences_macos:compileDebugLibraryResources
[        ] > Task :location_permissions:generateDebugRFile
[        ] > Task :shared_preferences_web:compileDebugLibraryResources
[ +102 ms] > Task :url_launcher:compileDebugLibraryResources
[        ] > Task :shared_preferences_macos:generateDebugRFile
[        ] > Task :shared_preferences_web:generateDebugRFile
[        ] > Task :url_launcher_macos:compileDebugLibraryResources
[        ] > Task :url_launcher_web:compileDebugLibraryResources
[        ] > Task :location_permissions:generateDebugBuildConfig
[        ] > Task :shared_preferences:generateDebugBuildConfig
[        ] > Task :location_permissions:javaPreCompileDebug
[ +194 ms] > Task :location_permissions:compileDebugJavaWithJavac
[        ] > Task :shared_preferences:generateDebugRFile
[ +900 ms] > Task :app:processDebugResources
[        ] > Task :location_permissions:bundleLibCompileDebug
[        ] > Task :shared_preferences_macos:generateDebugBuildConfig
[        ] > Task :shared_preferences_web:generateDebugBuildConfig
[        ] > Task :shared_preferences_macos:javaPreCompileDebug
[  +97 ms] > Task :shared_preferences_macos:compileDebugJavaWithJavac
[        ] > Task :shared_preferences_web:javaPreCompileDebug
[        ] > Task :shared_preferences_web:compileDebugJavaWithJavac
[        ] > Task :shared_preferences_macos:bundleLibCompileDebug
[        ] > Task :shared_preferences_web:bundleLibCompileDebug
[ +104 ms] > Task :shared_preferences:javaPreCompileDebug
[        ] > Task :shared_preferences:compileDebugJavaWithJavac
[        ] > Task :shared_preferences:bundleLibCompileDebug
[+1899 ms] > Task :app:compileDebugKotlin
[  +96 ms] > Task :app:javaPreCompileDebug
[  +98 ms] > Task :app:compileDebugJavaWithJavac
[        ] > Task :app:compileDebugSources
[        ] > Task :amap_all_fluttify:bundleLibResDebug
[        ] > Task :amap_core_fluttify:bundleLibResDebug
[        ] > Task :app:processDebugJavaRes NO-SOURCE
[        ] > Task :amap_map_fluttify:bundleLibResDebug
[        ] > Task :foundation_fluttify:processDebugJavaRes NO-SOURCE
[        ] > Task :location_permissions:processDebugJavaRes NO-SOURCE
[        ] > Task :amap_location_fluttify:bundleLibResDebug
[        ] > Task :amap_search_fluttify:bundleLibResDebug
[        ] > Task :shared_preferences:processDebugJavaRes NO-SOURCE
[        ] > Task :foundation_fluttify:bundleLibResDebug
[        ] > Task :shared_preferences_macos:processDebugJavaRes NO-SOURCE
[        ] > Task :location_permissions:bundleLibResDebug
[        ] > Task :shared_preferences_web:processDebugJavaRes NO-SOURCE
[        ] > Task :shared_preferences:bundleLibResDebug
[        ] > Task :url_launcher:processDebugJavaRes NO-SOURCE
[        ] > Task :shared_preferences_web:bundleLibResDebug
[        ] > Task :url_launcher_macos:processDebugJavaRes NO-SOURCE
[        ] > Task :shared_preferences_macos:bundleLibResDebug
[        ] > Task :url_launcher_web:processDebugJavaRes NO-SOURCE
[        ] > Task :url_launcher:bundleLibResDebug
[        ] > Task :url_launcher_macos:bundleLibResDebug
[        ] > Task :url_launcher_web:bundleLibResDebug
[ +298 ms] > Task :url_launcher_web:bundleLibRuntimeDebug
[  +98 ms] > Task :url_launcher_macos:bundleLibRuntimeDebug
[        ] > Task :location_permissions:bundleLibRuntimeDebug
[ +899 ms] > Task :shared_preferences_macos:bundleLibRuntimeDebug
[        ] > Task :shared_preferences_web:bundleLibRuntimeDebug
[ +203 ms] > Task :shared_preferences:bundleLibRuntimeDebug
[        ] > Task :url_launcher:bundleLibRuntimeDebug
[ +197 ms] > Task :foundation_fluttify:bundleLibRuntimeDebug
[  +98 ms] > Task :amap_core_fluttify:bundleLibRuntimeDebug
[ +200 ms] > Task :amap_map_fluttify:bundleLibRuntimeDebug
[        ] > Task :amap_search_fluttify:bundleLibRuntimeDebug
[ +400 ms] > Task :amap_location_fluttify:bundleLibRuntimeDebug
[ +800 ms] > Task :app:mergeDebugJavaResource
[        ] > Task :amap_all_fluttify:bundleLibRuntimeDebug
[  +97 ms] > Task :app:checkDebugDuplicateClasses
[ +101 ms] > Task :app:desugarDebugFileDependencies
[ +899 ms] > Task :app:dexBuilderDebug
[+3899 ms] > Task :amap_all_fluttify:copyDebugJniLibsProjectOnly
[        ] > Task :amap_core_fluttify:copyDebugJniLibsProjectOnly
[        ] > Task :amap_location_fluttify:copyDebugJniLibsProjectOnly
[        ] > Task :amap_map_fluttify:copyDebugJniLibsProjectOnly
[        ] > Task :amap_search_fluttify:copyDebugJniLibsProjectOnly
[        ] > Task :app:mergeDebugJniLibFolders
[        ] > Task :foundation_fluttify:mergeDebugJniLibFolders
[        ] > Task :foundation_fluttify:mergeDebugNativeLibs
[  +99 ms] > Task :foundation_fluttify:stripDebugDebugSymbols
[        ] > Task :foundation_fluttify:copyDebugJniLibsProjectOnly
[        ] > Task :location_permissions:mergeDebugJniLibFolders
[        ] > Task :location_permissions:mergeDebugNativeLibs
[        ] > Task :location_permissions:stripDebugDebugSymbols
[        ] > Task :location_permissions:copyDebugJniLibsProjectOnly
[        ] > Task :shared_preferences:mergeDebugJniLibFolders
[        ] > Task :shared_preferences:mergeDebugNativeLibs
[        ] > Task :shared_preferences:stripDebugDebugSymbols
[        ] > Task :shared_preferences:copyDebugJniLibsProjectOnly
[        ] > Task :shared_preferences_macos:mergeDebugJniLibFolders
[        ] > Task :shared_preferences_macos:mergeDebugNativeLibs
[        ] > Task :shared_preferences_macos:stripDebugDebugSymbols
[        ] > Task :shared_preferences_macos:copyDebugJniLibsProjectOnly
[ +101 ms] > Task :shared_preferences_web:mergeDebugJniLibFolders
[        ] > Task :shared_preferences_web:mergeDebugNativeLibs
[        ] > Task :shared_preferences_web:stripDebugDebugSymbols
[        ] > Task :shared_preferences_web:copyDebugJniLibsProjectOnly
[        ] > Task :url_launcher:mergeDebugJniLibFolders
[        ] > Task :url_launcher:mergeDebugNativeLibs
[        ] > Task :url_launcher:stripDebugDebugSymbols
[        ] > Task :url_launcher:copyDebugJniLibsProjectOnly
[        ] > Task :url_launcher_macos:mergeDebugJniLibFolders
[        ] > Task :url_launcher_macos:mergeDebugNativeLibs
[        ] > Task :url_launcher_macos:stripDebugDebugSymbols
[        ] > Task :url_launcher_macos:copyDebugJniLibsProjectOnly
[        ] > Task :url_launcher_web:mergeDebugJniLibFolders
[        ] > Task :url_launcher_web:mergeDebugNativeLibs
[        ] > Task :url_launcher_web:stripDebugDebugSymbols
[        ] > Task :url_launcher_web:copyDebugJniLibsProjectOnly
[ +394 ms] > Task :app:multiDexListDebug
[        ] > Task :app:validateSigningDebug
[        ] > Task :foundation_fluttify:copyDebugJniLibsProjectAndLocalJars
[        ] > Task :foundation_fluttify:extractDebugAnnotations
[        ] > Task :foundation_fluttify:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :foundation_fluttify:mergeDebugConsumerProguardFiles UP-TO-DATE
[  +98 ms] > Task :foundation_fluttify:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :foundation_fluttify:mergeDebugJavaResource
[        ] > Task :foundation_fluttify:syncDebugLibJars
[        ] > Task :foundation_fluttify:bundleDebugAar
[        ] > Task :foundation_fluttify:compileDebugSources
[        ] > Task :foundation_fluttify:assembleDebug
[        ] > Task :location_permissions:copyDebugJniLibsProjectAndLocalJars
[+5000 ms] > Task :location_permissions:extractDebugAnnotations
[        ] > Task :location_permissions:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :location_permissions:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :location_permissions:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :location_permissions:mergeDebugJavaResource
[        ] > Task :location_permissions:syncDebugLibJars
[        ] > Task :location_permissions:bundleDebugAar
[        ] > Task :location_permissions:compileDebugSources
[        ] > Task :location_permissions:assembleDebug
[        ] > Task :shared_preferences:copyDebugJniLibsProjectAndLocalJars
[  +99 ms] > Task :shared_preferences:extractDebugAnnotations
[        ] > Task :shared_preferences:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :shared_preferences:mergeDebugJavaResource
[        ] > Task :shared_preferences:syncDebugLibJars
[        ] > Task :shared_preferences:bundleDebugAar
[        ] > Task :shared_preferences:compileDebugSources
[        ] > Task :shared_preferences:assembleDebug
[        ] > Task :shared_preferences_macos:copyDebugJniLibsProjectAndLocalJars
[  +99 ms] > Task :shared_preferences_macos:extractDebugAnnotations
[        ] > Task :shared_preferences_macos:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences_macos:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences_macos:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :shared_preferences_macos:mergeDebugJavaResource
[        ] > Task :shared_preferences_macos:syncDebugLibJars
[        ] > Task :shared_preferences_macos:bundleDebugAar
[        ] > Task :shared_preferences_macos:compileDebugSources
[        ] > Task :shared_preferences_macos:assembleDebug
[        ] > Task :shared_preferences_web:copyDebugJniLibsProjectAndLocalJars
[        ] > Task :shared_preferences_web:extractDebugAnnotations
[        ] > Task :shared_preferences_web:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences_web:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :shared_preferences_web:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :shared_preferences_web:mergeDebugJavaResource
[  +96 ms] > Task :shared_preferences_web:syncDebugLibJars
[        ] > Task :shared_preferences_web:bundleDebugAar
[        ] > Task :shared_preferences_web:compileDebugSources
[        ] > Task :shared_preferences_web:assembleDebug
[        ] > Task :url_launcher:copyDebugJniLibsProjectAndLocalJars
[        ] > Task :url_launcher:extractDebugAnnotations
[        ] > Task :url_launcher:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :url_launcher:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :url_launcher:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :url_launcher:mergeDebugJavaResource
[        ] > Task :url_launcher:syncDebugLibJars
[  +97 ms] > Task :url_launcher:bundleDebugAar
[ +599 ms] > Task :app:mergeDebugNativeLibs
[+1204 ms] > Task :app:stripDebugDebugSymbols
[        ] WARNING: Compatible side by side NDK version was not found. Default is 20.0.5594570.
[        ] Compatible side by side NDK version was not found. Default is 20.0.5594570.
[        ] Unable to strip the following libraries, packaging them as they are: libAMapSDK_MAP_v6_9_2.so, libAMapSDK_MAP_v6_9_2.so, libAMapSDK_MAP_v6_9_2.so, libAMapSDK_MAP_v6_9_2.so,
libAMapSDK_MAP_v6_9_2.so, libflutter.so, libflutter.so.
[   +1 ms] > Task :url_launcher_macos:copyDebugJniLibsProjectAndLocalJars
[        ] > Task :url_launcher_macos:extractDebugAnnotations
[        ] > Task :url_launcher_macos:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :url_launcher_macos:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :url_launcher_macos:prepareLintJarForPublish UP-TO-DATE
[ +693 ms] > Task :url_launcher:mergeDebugResources
[        ] > Task :url_launcher:compileDebugSources
[        ] > Task :url_launcher:assembleDebug
[        ] > Task :url_launcher_macos:compileDebugSources
[        ] > Task :url_launcher_web:copyDebugJniLibsProjectAndLocalJars
[ +100 ms] > Task :url_launcher_web:extractDebugAnnotations
[        ] > Task :url_launcher_web:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :url_launcher_web:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :url_launcher_web:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :url_launcher_macos:mergeDebugJavaResource
[        ] > Task :url_launcher_macos:syncDebugLibJars
[        ] > Task :url_launcher_macos:bundleDebugAar
[        ] > Task :url_launcher_macos:assembleDebug
[        ] > Task :url_launcher_web:compileDebugSources
[        ] > Task :url_launcher_web:mergeDebugJavaResource
[        ] > Task :url_launcher_web:syncDebugLibJars
[        ] > Task :url_launcher_web:bundleDebugAar
[        ] > Task :url_launcher_web:assembleDebug
[+17796 ms] > Task :app:mergeDexDebug
[+5304 ms] > Task :app:packageDebug
[   +1 ms] > Task :app:assembleDebug
[  +93 ms] BUILD SUCCESSFUL in 1m 47s
[        ] 395 actionable tasks: 355 executed, 40 up-to-date
[ +468 ms] Running Gradle task 'assembleDebug'... (completed in 108.2s)
[ +141 ms] calculateSha: LocalDirectory: '/Users/tmmy/shoudeng/shoudeng/build/app/outputs/apk'/app.apk
[ +130 ms] calculateSha: reading file took 129us
[+1319 ms] calculateSha: computing sha took 1318us
[   +4 ms] ✓ Built build/app/outputs/apk/debug/app-debug.apk.
[   +6 ms] executing: /Users/tmmy/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/tmmy/shoudeng/shoudeng/build/app/outputs/apk/app.apk AndroidManifest.xml
[  +37 ms] Exit code 0 from: /Users/tmmy/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/tmmy/shoudeng/shoudeng/build/app/outputs/apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
               A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
               A: package="com.example.shoudeng" (Raw: "com.example.shoudeng")
               A: platformBuildVersionCode=(type 0x10)0x1c
               A: platformBuildVersionName=(type 0x10)0x9
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: uses-permission (line=15)
                 A: android:name(0x01010003)="android.permission.WRITE_EXTERNAL_STORAGE" (Raw: "android.permission.WRITE_EXTERNAL_STORAGE")
               E: uses-permission (line=16)
                 A: android:name(0x01010003)="android.permission.ACCESS_COARSE_LOCATION" (Raw: "android.permission.ACCESS_COARSE_LOCATION")
               E: uses-permission (line=17)
                 A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
               E: uses-permission (line=18)
                 A: android:name(0x01010003)="android.permission.ACCESS_FINE_LOCATION" (Raw: "android.permission.ACCESS_FINE_LOCATION")
               E: uses-permission (line=19)
                 A: android:name(0x01010003)="android.permission.READ_PHONE_STATE" (Raw: "android.permission.READ_PHONE_STATE")
               E: uses-permission (line=20)
                 A: android:name(0x01010003)="android.permission.CHANGE_WIFI_STATE" (Raw: "android.permission.CHANGE_WIFI_STATE")
               E: uses-permission (line=21)
                 A: android:name(0x01010003)="android.permission.ACCESS_WIFI_STATE" (Raw: "android.permission.ACCESS_WIFI_STATE")
               E: uses-permission (line=22)
                 A: android:name(0x01010003)="android.permission.CHANGE_CONFIGURATION" (Raw: "android.permission.CHANGE_CONFIGURATION")
               E: uses-permission (line=23)
                 A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
               E: uses-permission (line=24)
                 A: android:name(0x01010003)="android.permission.WRITE_SETTINGS" (Raw: "android.permission.WRITE_SETTINGS")
               E: uses-permission (line=25)
                 A: android:name(0x01010003)="android.permission.RECORD_AUDIO" (Raw: "android.permission.RECORD_AUDIO")
               E: uses-permission (line=26)
                 A: android:name(0x01010003)="android.permission.CAMERA" (Raw: "android.permission.CAMERA")
               E: uses-permission (line=27)
                 A: android:name(0x01010003)="android.permission.MODIFY_AUDIO_SETTINGS" (Raw: "android.permission.MODIFY_AUDIO_SETTINGS")
               E: uses-permission (line=29)
                 A: android:name(0x01010003)="android.permission.SYSTEM_ALERT_WINDOW" (Raw: "android.permission.SYSTEM_ALERT_WINDOW")
               E: uses-permission (line=31)
                 A: android:name(0x01010003)="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" (Raw: "android.permission.ACCESS_LOCATION_EXTRA_COMMANDS")
               E: uses-permission (line=32)
                 A: android:name(0x01010003)="android.permission.BLUETOOTH" (Raw: "android.permission.BLUETOOTH")
               E: uses-permission (line=33)
                 A: android:name(0x01010003)="android.permission.BLUETOOTH_ADMIN" (Raw: "android.permission.BLUETOOTH_ADMIN")
               E: uses-permission (line=34)
                 A: android:name(0x01010003)="android.permission.READ_EXTERNAL_STORAGE" (Raw: "android.permission.READ_EXTERNAL_STORAGE")
               E: application (line=42)
                 A: android:label(0x01010001)="shoudeng" (Raw: "shoudeng")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=48)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A: android:name(0x01010003)="com.example.shoudeng.MainActivity" (Raw: "com.example.shoudeng.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: intent-filter (line=55)
                     E: action (line=56)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=58)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=65)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
                 E: meta-data (line=68)
                   A: android:name(0x01010003)="com.amap.api.v2.apikey" (Raw: "com.amap.api.v2.apikey")
                   A: android:value(0x01010024)="93bc5116e7e0ed870fb3e82551ddeb88" (Raw: "93bc5116e7e0ed870fb3e82551ddeb88")
                 E: service (line=72)
                   A: android:name(0x01010003)="com.amap.api.location.APSService" (Raw: "com.amap.api.location.APSService")
                 E: activity (line=74)
                   A: android:name(0x01010003)="com.amap.api.maps.offlinemap.OfflineMapActivity" (Raw: "com.amap.api.maps.offlinemap.OfflineMapActivity")
                 E: receiver (line=76)
                   A: android:name(0x01010003)="me.yohom.foundation_fluttify.FluttifyBroadcastReceiver" (Raw: "me.yohom.foundation_fluttify.FluttifyBroadcastReceiver")
                 E: activity (line=78)
                   A: android:theme(0x01010000)=@0x01030007
                   A: android:name(0x01010003)="io.flutter.plugins.urllauncher.WebViewActivity" (Raw: "io.flutter.plugins.urllauncher.WebViewActivity")
                   A: android:exported(0x01010010)=(type 0x12)0x0
[   +5 ms] Stopping app 'app.apk' on sdk gphone x86 64.
[        ] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am force-stop com.example.shoudeng
[ +607 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell pm list packages com.example.shoudeng
[ +233 ms] package:com.example.shoudeng
[   +4 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell cat /data/local/tmp/sky.com.example.shoudeng.sha1
[ +174 ms] 70f3daeba30bea4ee0d596cde1de70065a715c5c
[   +1 ms] Installing APK.
[   +3 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb version
[   +9 ms] Android Debug Bridge version 1.0.41
           Version 29.0.6-6198805
           Installed as /Users/tmmy/Library/Android/sdk/platform-tools/adb
[   +1 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb start-server
[  +10 ms] Installing build/app/outputs/apk/app.apk...
[        ] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 install -t -r /Users/tmmy/shoudeng/shoudeng/build/app/outputs/apk/app.apk
[+3094 ms] Performing Streamed Install
                    Success
[        ] Installing build/app/outputs/apk/app.apk... (completed in 3.1s)
[   +4 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell echo -n e68c11380c5dfd130c6f3358759b192e6bc23c5b > /data/local/tmp/sky.com.example.shoudeng.sha1
[ +103 ms] sdk gphone x86 64 startApp
[   +4 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez
enable-dart-profiling true --ez enable-software-rendering true --ez enable-checked-mode true --ez verify-entry-points true com.example.shoudeng/com.example.shoudeng.MainActivity
[ +316 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.shoudeng/.MainActivity (has extras) }
[        ] Waiting for observatory port to be available...
[+1303 ms] D/FlutterActivity(13068): Using the launch theme as normal theme.
[   +6 ms] D/FlutterActivityAndFragmentDelegate(13068): Setting up FlutterEngine.
[        ] D/FlutterActivityAndFragmentDelegate(13068): No preferred FlutterEngine was provided. Creating a new FlutterEngine for this FlutterFragment.
[+5860 ms] D/FlutterActivity(13119): Using the launch theme as normal theme.
[  +10 ms] D/FlutterActivityAndFragmentDelegate(13119): Setting up FlutterEngine.
[        ] D/FlutterActivityAndFragmentDelegate(13119): No preferred FlutterEngine was provided. Creating a new FlutterEngine for this FlutterFragment.
[ +638 ms] Observatory URL on device: http://127.0.0.1:34139/Rff4L6qRs6c=/
[   +1 ms] executing: /Users/tmmy/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward tcp:0 tcp:34139
[   +9 ms] 50457
[        ] Forwarded host port 50457 to device port 34139 for Observatory
[  +17 ms] Connecting to service protocol: http://127.0.0.1:50457/Rff4L6qRs6c=/
[ +319 ms] Successfully connected to service protocol: http://127.0.0.1:50457/Rff4L6qRs6c=/
[   +3 ms] Sending to VM service: getVM({})
[   +7 ms] Result: {type: VM, name: vm, architectureBits: 64, hostCPU: Intel(R) Core(TM) i5-7360U CPU @ 2.30GHz, operatingSystem: android, targetCPU: x64, version: 2.7.2 (Mon Mar 23 22:11:27 2020 +0100)
on "android_x64", _profilerMode: VM, _nativeZoneMemoryUsage: 0,...
[   +7 ms] Sending to VM service: getIsolate({isolateId: isolates/988816315635243})
[   +5 ms] Sending to VM service: _flutter.listViews({})
[   +8 ms] Result: {type: Isolate, id: isolates/988816315635243, name: main, number: 988816315635243, _originNumber: 988816315635243, startTime: 1586797591931, _heaps: {new: {type: HeapSpace, name: new,
vmName: Scavenger, collections: 0, avgCollectionPeriodMillis: 0...
[   +5 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7f4d019e5030, isolate: {type: @Isolate, fixedId: true, id: isolates/988816315635243, name:
main.dart$main-988816315635243, number: 988816315635243}}]}
[   +8 ms] DevFS: Creating new filesystem on the device (null)
[        ] Sending to VM service: _createDevFS({fsName: shoudeng})
[  +42 ms] Result: {type: FileSystem, name: shoudeng, uri: file:///data/user/0/com.example.shoudeng/code_cache/shoudengDPEXCS/shoudeng/}
[        ] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.shoudeng/code_cache/shoudengDPEXCS/shoudeng/)
[   +1 ms] Updating assets
[ +152 ms] Syncing files to device sdk gphone x86 64...
[   +1 ms] Scanning asset files
[   +2 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +8 ms] /Users/tmmy/tools/flutter/bin/cache/dart-sdk/bin/dart /Users/tmmy/tools/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root
/Users/tmmy/tools/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter -Ddart.developer.causal_async_stacks=true --output-dill
/var/folders/ws/d8sm8zd149j0twwtr2y11hlw0000gp/T/flutter_tool.nZifVl/app.dill --packages /Users/tmmy/shoudeng/shoudeng/.packages -Ddart.vm.profile=false -Ddart.vm.product=false
--bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation
--filesystem-scheme org-dartlang-root
[   +6 ms] <- compile package:shoudeng/main.dart
[ +883 ms] D/fluttify-java(13119): AmapSearchFluttifyPlugin::onAttachedToEngine@io.flutter.embedding.engine.plugins.FlutterPlugin$FlutterPluginBinding@982a4f4
[ +801 ms] D/FlutterActivityAndFragmentDelegate(13119): Attaching FlutterEngine to the Activity that owns this Fragment.
[        ] D/fluttify-java(13119): AmapLocationFluttifyPlugin::onAttachedToActivity@io.flutter.embedding.engine.FlutterEnginePluginRegistry$FlutterEngineActivityPluginBinding@1ebe6b6
[        ] D/fluttify-java(13119): AmapMapFluttifyPlugin::onAttachedToActivity@io.flutter.embedding.engine.FlutterEnginePluginRegistry$FlutterEngineActivityPluginBinding@1ebe6b6
[  +24 ms] D/fluttify-java(13119): AmapSearchFluttifyPlugin::onAttachedToActivity@io.flutter.embedding.engine.FlutterEnginePluginRegistry$FlutterEngineActivityPluginBinding@1ebe6b6
[        ] D/fluttify-java(13119): AmapLocationFluttifyPlugin::onAttachedToEngine@io.flutter.embedding.engine.plugins.FlutterPlugin$FlutterPluginBinding@982a4f4
[   +2 ms] D/fluttify-java(13119): AmapLocationFluttifyPlugin::onAttachedToActivity@io.flutter.embedding.engine.FlutterEnginePluginRegistry$FlutterEngineActivityPluginBinding@1ebe6b6
[   +1 ms] D/fluttify-java(13119): AmapMapFluttifyPlugin::onAttachedToEngine@io.flutter.embedding.engine.plugins.FlutterPlugin$FlutterPluginBinding@982a4f4
[  +17 ms] D/fluttify-java(13119): AmapMapFluttifyPlugin::onAttachedToActivity@io.flutter.embedding.engine.FlutterEnginePluginRegistry$FlutterEngineActivityPluginBinding@1ebe6b6
[        ] D/fluttify-java(13119): AmapSearchFluttifyPlugin::onAttachedToEngine@io.flutter.embedding.engine.plugins.FlutterPlugin$FlutterPluginBinding@982a4f4
[   +5 ms] D/fluttify-java(13119): AmapSearchFluttifyPlugin::onAttachedToActivity@io.flutter.embedding.engine.FlutterEnginePluginRegistry$FlutterEngineActivityPluginBinding@1ebe6b6
[  +70 ms] D/FlutterView(13119): Attaching to a FlutterEngine: io.flutter.embedding.engine.FlutterEngine@942b5f2
[  +29 ms] W/xample.shouden(13119): Accessing hidden method Landroid/view/accessibility/AccessibilityNodeInfo;->getSourceNodeId()J (greylist, reflection, allowed)
[        ] W/xample.shouden(13119): Accessing hidden method Landroid/view/accessibility/AccessibilityRecord;->getSourceNodeId()J (greylist, reflection, allowed)
[        ] W/xample.shouden(13119): Accessing hidden field Landroid/view/accessibility/AccessibilityNodeInfo;->mChildNodeIds:Landroid/util/LongArray; (greylist, reflection, allowed)
[        ] W/xample.shouden(13119): Accessing hidden method Landroid/util/LongArray;->get(I)J (greylist, reflection, allowed)
[  +19 ms] D/FlutterActivityAndFragmentDelegate(13119): Executing Dart entrypoint: main, and sending initial route: /
[  +45 ms] D/HostConnection(13119): HostConnection::get() New Host Connection established 0x7f4c719f28d0, tid 13142
[  +14 ms] D/HostConnection(13119): HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_native_sync_v2 ANDROID_EMU_native_sync_v3 ANDROID_EMU_native_sync_v4 ANDROID_EMU_dma_v1
ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object
GL_KHR_texture_compression_astc_ldr ANDROID_EMU_gles_max_version_3_0
[  +30 ms] W/OpenGLRenderer(13119): Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
[  +10 ms] D/EGL_emulation(13119): eglCreateContext: 0x7f4c719eef10: maj 3 min 0 rcv 3
[        ] D/EGL_emulation(13119): eglMakeCurrent: 0x7f4c719eef10: ver 3 0 (tinfo 0x7f4c01a1be30)
[  +36 ms] I/Gralloc4(13119): mapper 4.x is not supported
[   +5 ms] D/HostConnection(13119): createUnique: call
[   +1 ms] D/HostConnection(13119): HostConnection::get() New Host Connection established 0x7f4c719f01a0, tid 13142
[        ] D/eglCodecCommon(13119): allocate: Ask for block of size 0x100
[        ] D/eglCodecCommon(13119): allocate: ioctl allocate returned offset 0x3f9fb2000 size 0x2000
[        ] D/HostConnection(13119): HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_native_sync_v2 ANDROID_EMU_native_sync_v3 ANDROID_EMU_native_sync_v4 ANDROID_EMU_dma_v1
ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2 ANDROID_EMU_YUV_Cache ANDROID_EMU_async_unmap_buffer GL_OES_EGL_image_external_essl3 GL_OES_vertex_array_object
GL_KHR_texture_compression_astc_ldr ANDROID_EMU_gles_max_version_3_0
[ +394 ms] D/EGL_emulation(13119): eglMakeCurrent: 0x7f4c719eef10: ver 3 0 (tinfo 0x7f4c01a1be30)
[ +131 ms] I/Choreographer(13119): Skipped 34 frames!  The application may be doing too much work on its main thread.
[ +609 ms] I/flutter (13119): MaterialPageRoute(RouteSettings("/", null), animation: null)
[+2264 ms] W/Gralloc4(13119): allocator 3.x is not supported
[ +800 ms] E/MethodChannel#flutter/platform_views(13119): Failed to handle method call
[        ] E/MethodChannel#flutter/platform_views(13119): android.view.WindowManager$InvalidDisplayException: Unable to add window android.view.ViewRootImpl$W@e788597 -- the specified display can not be
found
[   +4 ms] E/MethodChannel#flutter/platform_views(13119): 	at android.view.ViewRootImpl.setView(ViewRootImpl.java:1065)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at android.view.WindowManagerGlobal.addView(WindowManagerGlobal.java:397)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:105)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at android.app.Dialog.show(Dialog.java:340)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at android.app.Presentation.show(Presentation.java:252)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at io.flutter.plugin.platform.VirtualDisplayController.(VirtualDisplayController.java:93)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at io.flutter.plugin.platform.VirtualDisplayController.create(VirtualDisplayController.java:53)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at io.flutter.plugin.platform.PlatformViewsController$1.createPlatformView(PlatformViewsController.java:105)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at io.flutter.embedding.engine.systemchannels.PlatformViewsChannel$1.create(PlatformViewsChannel.java:96)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at io.flutter.embedding.engine.systemchannels.PlatformViewsChannel$1.onMethodCall(PlatformViewsChannel.java:60)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(MethodChannel.java:231)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at io.flutter.embedding.engine.dart.DartMessenger.handleMessageFromDart(DartMessenger.java:93)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at io.flutter.embedding.engine.FlutterJNI.handlePlatformMessage(FlutterJNI.java:642)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at android.os.MessageQueue.nativePollOnce(Native Method)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at android.os.MessageQueue.next(MessageQueue.java:335)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at android.os.Looper.loop(Looper.java:176)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at android.app.ActivityThread.main(ActivityThread.java:7464)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at java.lang.reflect.Method.invoke(Native Method)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:549)
[        ] E/MethodChannel#flutter/platform_views(13119): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:955)
[  +12 ms] E/flutter (13119): [ERROR:flutter/lib/ui/ui_dart_state.cc(157)] Unhandled Exception: PlatformException(error, Unable to add window android.view.ViewRootImpl$W@e788597 -- the specified display
can not be found, null)
[        ] E/flutter (13119): #0      StandardMethodCodec.decodeEnvelope (package:flutter/src/services/message_codecs.dart:569:7)
[        ] E/flutter (13119): #1      MethodChannel.invokeMethod (package:flutter/src/services/platform_channel.dart:321:33)
[        ] E/flutter (13119): 
[        ] E/flutter (13119): #2      AndroidViewController._create (package:flutter/src/services/platform_views.dart:640:54)
[        ] E/flutter (13119): #3      AndroidViewController.setSize (package:flutter/src/services/platform_views.dart:557:14)
[        ] E/flutter (13119): #4      RenderAndroidView._sizePlatformView (package:flutter/src/rendering/platform_view.dart:174:29)
[        ] E/flutter (13119): #5      RenderAndroidView.performResize (package:flutter/src/rendering/platform_view.dart:155:5)
[        ] E/flutter (13119): #6      RenderObject.layout (package:flutter/src/rendering/object.dart:1703:9)
[        ] E/flutter (13119): #7      RenderProxyBoxMixin.performLayout (package:flutter/src/rendering/proxy_box.dart:105:13)
[        ] E/flutter (13119): #8      RenderObject.layout (package:flutter/src/rendering/object.dart:1724:7)
[        ] E/flutter (13119): #9      RenderStack.performLayout (package:flutter/src/rendering/stack.dart:505:15)
[        ] E/flutter (13119): #10     RenderObject._layoutWithoutResize (package:flutter/src/rendering/object.dart:1584:7)
[        ] E/flutter (13119): #11     PipelineOwner.flushLayout (package:flutter/src/rendering/object.dart:844:18)
[        ] E/flutter (13119): #12     RendererBinding.drawFrame (package:flutter/src/rendering/binding.dart:344:19)
[        ] E/flutter (13119): #13     WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:774:13)
[        ] E/flutter (13119): #14     RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:283:5)
[        ] E/flutter (13119): #15     SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:1102:15)
[        ] E/flutter (13119): #16     SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:1041:9)
[        ] E/flutter (13119): #17     SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:957:5)
[        ] E/flutter (13119): #18     _rootRun (dart:async/zone.dart:1126:13)
[        ] E/flutter (13119): #19     _CustomZone.run (dart:async/zone.dart:1023:19)
[        ] E/flutter (13119): #20     _CustomZone.runGuarded (dart:async/zone.dart:925:7)
[        ] E/flutter (13119): #21     _invoke (dart:ui/hooks.dart:259:10)
[        ] E/flutter (13119): #22     _drawFrame (dart:ui/hooks.dart:217:3)
[        ] E/flutter (13119):
[+9446 ms] Updating files
[ +371 ms] DevFS: Sync finished
[   +1 ms] Syncing files to device sdk gphone x86 64... (completed in 16,065ms, longer than expected)
[        ] Synced 1.0MB.
[   +1 ms] Sending to VM service: _flutter.listViews({})
[   +2 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7f4d019e5030, isolate: {type: @Isolate, fixedId: true, id: isolates/988816315635243, name:
main.dart$main-988816315635243, number: 988816315635243}}]}
[        ] <- accept
[        ] Connected to _flutterView/0x7f4d019e5030.
[   +2 ms] 🔥  To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[        ] An Observatory debugger and profiler on sdk gphone x86 64 is available at: http://127.0.0.1:50457/Rff4L6qRs6c=/
[        ] For a more detailed help message, press "h". To detach, press "d"; to quit, press "q".

openjdk 14 2020-03-17
OpenJDK Runtime Environment (build 14+36-1461)
OpenJDK 64-Bit Server VM (build 14+36-1461, mixed mode, sharing)

安卓版本是10.0
ios模拟器上没问题

请帮忙协助查看一下,是用模拟器打开的原因,还是出现了bug

iOS Location

AmapLocation.fetchLocation 获取不到地址信息

Error running pod install

[!] 'AMapSearch' uses the unencrypted 'http' protocol to transfer the Pod. Please be sure you're in a safe network with only trusted hosts. Otherwise, please reach out to the library author to notify them of this security issue.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.