release 1.0.3+1 , lint 处理
This commit is contained in:
parent
718d9cff62
commit
54ae0d3488
|
@ -1,3 +1,7 @@
|
||||||
|
## 1.0.3+1
|
||||||
|
2024-01-03.
|
||||||
|
* 处理lint,更新文档
|
||||||
|
|
||||||
## 1.0.3
|
## 1.0.3
|
||||||
2024-01-03.
|
2024-01-03.
|
||||||
* AMapController 添加 toScreenCoordinate / fromScreenCoordinate,实现屏幕坐标和经纬度的互相转换
|
* AMapController 添加 toScreenCoordinate / fromScreenCoordinate,实现屏幕坐标和经纬度的互相转换
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
| | Android | iOS |
|
| | Android | iOS |
|
||||||
|-------------|---------|-------|
|
|-------------|---------|-------|
|
||||||
| **AMapSDK** | 9.8.3 | 9.7.0 |
|
| **AMapSDK** | 9.8.3 | 9.7.0 |
|
||||||
| **Support** | SDK 16+ | 11.0+ |
|
| **Support** | SDK 16+ | 12.0+ |
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
|
@ -22,7 +22,7 @@ rootProject.allprojects {
|
||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 29
|
compileSdkVersion 34
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Uncomment this line to define a global platform for your project
|
# Uncomment this line to define a global platform for your project
|
||||||
platform :ios, '11.0'
|
platform :ios, '12.0'
|
||||||
|
|
||||||
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
|
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
|
||||||
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
|
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
|
||||||
|
|
|
@ -24,8 +24,6 @@ NS_ASSUME_NONNULL_BEGIN
|
||||||
/// @param numberColor 色值
|
/// @param numberColor 色值
|
||||||
+ (UIColor*)colorFromNumber:(NSNumber*)numberColor;
|
+ (UIColor*)colorFromNumber:(NSNumber*)numberColor;
|
||||||
|
|
||||||
+ (CGPoint)pointFromDictionary:(NSDictionary *)dictionary;
|
|
||||||
|
|
||||||
/// 从数据中解析经纬度
|
/// 从数据中解析经纬度
|
||||||
/// @param array 经纬度数组对(默认第一个当做维度,第二个当做经度)
|
/// @param array 经纬度数组对(默认第一个当做维度,第二个当做经度)
|
||||||
+ (CLLocationCoordinate2D)coordinateFromArray:(NSArray *)array;
|
+ (CLLocationCoordinate2D)coordinateFromArray:(NSArray *)array;
|
||||||
|
|
|
@ -4,21 +4,21 @@
|
||||||
#
|
#
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'amap_map'
|
s.name = 'amap_map'
|
||||||
s.version = '0.0.1'
|
s.version = '1.0.3'
|
||||||
s.summary = 'A new Flutter plugin.'
|
s.summary = 'A new Flutter plugin.'
|
||||||
s.description = <<-DESC
|
s.description = <<-DESC
|
||||||
A new Flutter plugin.
|
A new Flutter plugin for AMap.
|
||||||
DESC
|
DESC
|
||||||
s.homepage = 'https://github.com/kuloud/amap_map'
|
s.homepage = 'https://github.com/kuloud/amap_map'
|
||||||
s.license = { :file => '../LICENSE' }
|
s.license = { :type => 'Apache License, Version 2.0', :file => '../LICENSE' }
|
||||||
s.author = { 'kuloud' => 'kuloud@outlook.com' }
|
s.author = { 'kuloud' => 'kuloud@outlook.com' }
|
||||||
s.source = { :path => '.' }
|
s.source = { :git => 'https://github.com/kuloud/amap_map.git', :tag => 'v1.0.3' }
|
||||||
s.source_files = 'Classes/**/*'
|
s.source_files = 'Classes/**/*'
|
||||||
s.public_header_files = 'Classes/**/*.h'
|
s.public_header_files = 'Classes/**/*.h'
|
||||||
s.dependency 'Flutter'
|
s.dependency 'Flutter'
|
||||||
s.dependency 'AMap3DMap'
|
s.dependency 'AMap3DMap'
|
||||||
s.static_framework = true
|
s.static_framework = true
|
||||||
s.platform = :ios, '8.0'
|
s.platform = :ios, '12.0'
|
||||||
|
|
||||||
s.static_framework = true
|
s.static_framework = true
|
||||||
# Flutter.framework does not contain a i386 slice.
|
# Flutter.framework does not contain a i386 slice.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: amap_map
|
name: amap_map
|
||||||
description: Amap SDK Flutter plugin for integrating AMapSDK in iOS and Android applications.
|
description: Amap SDK Flutter plugin for integrating AMapSDK in iOS and Android applications.
|
||||||
version: 1.0.3
|
version: 1.0.3+1
|
||||||
homepage: https://github.com/kuloud/amap_map
|
homepage: https://github.com/kuloud/amap_map
|
||||||
issue_tracker: https://github.com/kuloud/amap_map/issues
|
issue_tracker: https://github.com/kuloud/amap_map/issues
|
||||||
platforms:
|
platforms:
|
||||||
|
|
Loading…
Reference in New Issue