Skip to content

Commit f8137a5

Browse files
committed
fix update 1.3.5
1 parent 571b85f commit f8137a5

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

CHANGELOG-zh.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#
22

3+
## 1.3.5
4+
* 修复'BOOL' (aka 'bool') to 'id _Nullable' is disallowed with ARC
5+
36
## 1.3.4
47
* 修复安卓动画失效问题
58

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#
22

3+
## 1.3.5
4+
* Fix 'BOOL' (aka 'bool') to 'id _Nullable' is disallowed with ARC
5+
36
## 1.3.4
47
* Fix Android animation Field
58

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'com.android.library'
22
group 'com.sean.rao.ali_auth'
3-
version '1.3.4'
3+
version '1.3.5'
44

55
buildscript {
66
repositories {

ios/Classes/AliAuthPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ - (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result {
119119
}
120120
else if ([@"queryCheckBoxIsChecked" isEqualToString:call.method]) {
121121
BOOL status = [[TXCommonHandler sharedInstance] queryCheckBoxIsChecked];
122-
result(status);
122+
result(@(status));
123123
}
124124
else if ([@"checkCellularDataEnable" isEqualToString:call.method]) {
125125
[self checkCellularDataEnable:call result:result];

ios/ali_auth.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'ali_auth'
6-
s.version = '1.3.4'
6+
s.version = '1.3.5'
77
s.summary = 'A new flutter plugin project.'
88
s.description = <<-DESC
99
是一个集成阿里云号码认证服务SDK的flutter插件

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ali_auth
22
description: This is a plug-in for one click login in the alicloud number authentication service. Alibaba cloud is also used in the one click login function
3-
version: 1.3.4
3+
version: 1.3.5
44
homepage: https://github.com/CodeGather/flutter_ali_auth
55
repository: https://github.com/CodeGather/flutter_ali_auth/tree/master/example
66
issue_tracker: https://github.com/CodeGather/flutter_ali_auth/issues

release.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11

2-
## 1.3.2
3-
* 更新android sdk 为 2.14.7
4-
* 更新ios sdk 为 2.14.6
5-
* 更新web sdk 为 2.1.12
6-
* 添加方法:queryCheckBoxIsChecked
7-
* 添加Android字段:fullScreen
8-
* 添加Android字段:authPageUseDayLight
9-
* 添加Android字段:keepAllPageHideNavigationBar
10-
* 添加Android字段:closeAuthPageReturnBack
2+
## 1.3.5
3+
* 修复'BOOL' (aka 'bool') to 'id _Nullable' is disallowed with ARC

0 commit comments

Comments
 (0)