File tree Expand file tree Collapse file tree 8 files changed +37
-17
lines changed Expand file tree Collapse file tree 8 files changed +37
-17
lines changed Original file line number Diff line number Diff line change 7
7
build /
8
8
.idea
9
9
.metadata
10
-
11
10
pubspec.lock
11
+ .last_build_id
Original file line number Diff line number Diff line change
1
+
2
+
3
+ ## 0.6.23
4
+ + 新增:适配认证 ios SDK 2.6.7。
1
5
## 0.6.22
2
6
+ 新增:适配认证Android2.6.7 ios 2.6.6。
3
7
## 0.6.20
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ dependencies:
19
19
20
20
```
21
21
dependencies:
22
- jverify: 0.6.22
22
+ jverify: 0.6.23
23
23
```
24
24
25
25
### 配置
Original file line number Diff line number Diff line change @@ -27,14 +27,26 @@ android {
27
27
defaultConfig {
28
28
minSdkVersion 17
29
29
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
30
-
31
- // library 混淆 -> 随 library 引用,自动添加到 apk 打包混淆
32
- consumerProguardFiles ' consumer-rules.pro'
33
30
}
34
31
35
32
lintOptions {
36
33
disable ' InvalidPackage'
37
34
}
35
+ buildTypes {
36
+ release {
37
+ minifyEnabled true
38
+ useProguard true
39
+ // library 混淆 -> 随 library 引用,自动添加到 apk 打包混淆
40
+ proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' consumer-rules.pro'
41
+ }
42
+ debug {
43
+ minifyEnabled false
44
+ useProguard false
45
+ proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' consumer-rules.pro'
46
+ }
47
+ }
48
+
49
+
38
50
}
39
51
40
52
dependencies {
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
# This is a generated file; do not edit or check into version control.
3
- export " FLUTTER_ROOT=/Users/ccq/Library/Flutter /flutter"
4
- export " FLUTTER_APPLICATION_PATH=/Users/ccq /Documents/code/work /jverify-flutter-plugin/example"
5
- export " FLUTTER_TARGET=/Users/ccq /Documents/code/work /jverify-flutter-plugin/example/lib/main.dart"
3
+ export " FLUTTER_ROOT=/Users/allan/Documents /flutter"
4
+ export " FLUTTER_APPLICATION_PATH=/Users/allan /Documents/GitHub /jverify-flutter-plugin/example"
5
+ export " FLUTTER_TARGET=/Users/allan /Documents/GitHub /jverify-flutter-plugin/example/lib/main.dart"
6
6
export " FLUTTER_BUILD_DIR=build"
7
7
export " SYMROOT=${SOURCE_ROOT} /../build/ios"
8
8
export " OTHER_LDFLAGS=$( inherited) -framework Flutter"
9
- export " FLUTTER_FRAMEWORK_DIR=/Users/ccq/Library/Flutter /flutter/bin/cache/artifacts/engine/ios"
9
+ export " FLUTTER_FRAMEWORK_DIR=/Users/allan/Documents /flutter/bin/cache/artifacts/engine/ios"
10
10
export " FLUTTER_BUILD_NAME=1.0.0"
11
11
export " FLUTTER_BUILD_NUMBER=1"
12
+ export " DART_DEFINES=flutter.inspector.structuredErrors%3Dtrue"
12
13
export " DART_OBFUSCATION=false"
13
14
export " TRACK_WIDGET_CREATION=true"
14
15
export " TREE_SHAKE_ICONS=false"
Original file line number Diff line number Diff line change 1
- <?xml version =" 1.0" encoding =" UTF-8" standalone =" no" ?>
2
- <document type =" com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version =" 3.0" toolsVersion =" 10117" systemVersion =" 15F34" targetRuntime =" iOS.CocoaTouch" propertyAccessControl =" none" useAutolayout =" YES" useTraitCollections =" YES" initialViewController =" BYZ-38-t0r" >
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <document type =" com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version =" 3.0" toolsVersion =" 17156" targetRuntime =" iOS.CocoaTouch" propertyAccessControl =" none" useAutolayout =" YES" useTraitCollections =" YES" colorMatched =" YES" initialViewController =" BYZ-38-t0r" >
3
+ <device id =" retina6_1" orientation =" portrait" appearance =" light" />
3
4
<dependencies >
4
5
<deployment identifier =" iOS" />
5
- <plugIn identifier =" com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version =" 10085" />
6
+ <plugIn identifier =" com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version =" 17126" />
7
+ <capability name =" documents saved in the Xcode 8 format" minToolsVersion =" 8.0" />
6
8
</dependencies >
7
9
<scenes >
8
10
<!-- Flutter View Controller-->
14
16
<viewControllerLayoutGuide type =" bottom" id =" wfy-db-euE" />
15
17
</layoutGuides >
16
18
<view key =" view" contentMode =" scaleToFill" id =" 8bC-Xf-vdC" >
17
- <rect key =" frame" x =" 0.0" y =" 0.0" width =" 600 " height =" 600 " />
19
+ <rect key =" frame" x =" 0.0" y =" 0.0" width =" 414 " height =" 896 " />
18
20
<autoresizingMask key =" autoresizingMask" widthSizable =" YES" heightSizable =" YES" />
19
- <color key =" backgroundColor" white =" 1" alpha =" 1" colorSpace =" custom" customColorSpace =" calibratedWhite " />
21
+ <color key =" backgroundColor" red =" 1" green = " 1 " blue = " 1 " alpha =" 1" colorSpace =" custom" customColorSpace =" sRGB " />
20
22
</view >
21
23
</viewController >
22
24
<placeholder placeholderIdentifier =" IBFirstResponder" id =" dkx-z0-nzr" sceneMemberID =" firstResponder" />
23
25
</objects >
26
+ <point key =" canvasLocation" x =" 131" y =" -20" />
24
27
</scene >
25
28
</scenes >
26
29
</document >
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ A new flutter plugin project.
15
15
s . source_files = 'Classes/**/*'
16
16
s . public_header_files = 'Classes/**/*.h'
17
17
s . dependency 'Flutter'
18
- s . dependency 'JCore' , '2.2.5 '
19
- s . dependency 'JVerification' , '2.6.6 '
18
+ s . dependency 'JCore' , '2.4.0 '
19
+ s . dependency 'JVerification' , '2.6.7 '
20
20
s . ios . deployment_target = '8.0'
21
21
s . static_framework = true
22
22
end
Original file line number Diff line number Diff line change 1
1
name : jverify
2
2
description : JIGUANG Official Jverifycation SDK flutter plugin project.
3
- version : 0.6.22
3
+ version : 0.6.23
4
4
homepage : https://www.jiguang.cn
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments