Skip to content

Commit 69acb37

Browse files
committed
Version 5.8.9
1 parent e8bb689 commit 69acb37

File tree

9 files changed

+20
-13
lines changed

9 files changed

+20
-13
lines changed

DevicePhotoPicker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
implementation fileTree(dir: 'libs', include: ['*.jar'])
3434

3535
// implementation project(':ImagePicker')
36-
implementation 'ly.kite:image-picker:5.8.8'
36+
implementation 'ly.kite:image-picker:5.8.9'
3737
}
3838

3939
// Uncomment before uploading archives

FacebookPhotoPicker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
implementation 'com.facebook.android:facebook-android-sdk:4.7.0'
3737

3838
// implementation project(':ImagePicker')
39-
implementation 'ly.kite:image-picker:5.8.8'
39+
implementation 'ly.kite:image-picker:5.8.9'
4040
}
4141

4242
// Uncomment before uploading archives

InstagramPhotoPicker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
implementation fileTree(dir: 'libs', include: ['*.jar'])
2929

3030
// api project(':ImagePicker')
31-
api 'ly.kite:image-picker:5.8.8'
31+
api 'ly.kite:image-picker:5.8.9'
3232
}
3333

3434
// Uncomment before uploading archives

KitePrintSDK-GCM/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies {
3838
implementation 'com.google.android.gms:play-services-gcm:15.0.1'
3939

4040
// api project(':KitePrintSDK')
41-
api 'ly.kite:kite-print-sdk:5.8.8'
41+
api 'ly.kite:kite-print-sdk:5.8.9'
4242
}
4343

4444
// Uncomment before uploading archives

KitePrintSDK/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### 5.8.9 (2018-07-03)
2+
- Added: Google Pay! The additional payment option will not show up by default as a process needs to be followed in order to activate it for production needs. Details [here](https://github.com/OceanLabs/Android-Print-SDK/blob/master/docs/google_pay.md)
3+
- Added: You can now add an authentication header to any images you provide directly to the SDK. See the Sample App for an example of this
4+
- Updated: The payment page UI has been updated to make space for the Google Pay option, make sure your layouts are compatible with the changes if you've created a custom view
5+
- Fixed: An issue with photobook parameters that caused problems when ordering
6+
- Fixed: The collage poster images no longer all refresh when a single image is moved around
7+
18
### 5.8.8 (2018-06-18)
29
- Added: Counter for multi-image selection (squares/collages etc) to help the user keep track of how many images have been selected so far
310
- Updated: minSDK is now 16, due to PayPal requirements

KitePrintSDK/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ android {
2323
minSdkVersion 16
2424
targetSdkVersion 27
2525
versionName '1.0'
26-
versionCode 108
26+
versionCode 111
2727
}
2828

2929
sourceSets {
@@ -56,11 +56,11 @@ dependencies {
5656
api 'com.stripe:stripe-android:7.0.0'
5757

5858
// api project(':DevicePhotoPicker')
59-
api 'ly.kite:device-photo-picker:5.8.8'
59+
api 'ly.kite:device-photo-picker:5.8.9'
6060
// implementation project(':InstagramPhotoPicker' )
61-
implementation 'ly.kite:instagram-photo-picker:5.8.8'
61+
implementation 'ly.kite:instagram-photo-picker:5.8.9'
6262
// implementation project(':FacebookPhotoPicker')
63-
implementation 'ly.kite:facebook-photo-picker:5.8.8'
63+
implementation 'ly.kite:facebook-photo-picker:5.8.9'
6464
}
6565

6666
// Exclude PayPal card scanning libs from package

KitePrintSDK/src/main/java/ly/kite/KiteSDK.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public class KiteSDK
110110
static public final boolean DISPLAY_PRODUCTS = false;
111111

112112

113-
static public final String SDK_VERSION = "5.8.8";
113+
static public final String SDK_VERSION = "5.8.9";
114114

115115
static public final String IMAGE_CATEGORY_APP = "app";
116116
static public final String IMAGE_CATEGORY_PRODUCT_ITEM = "product_item";

SampleApp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ dependencies {
6767
// Uncomment *one* of these depending on whether you want push messaging support
6868
implementation project(':KitePrintSDK')
6969
//implementation project(':KitePrintSDK-GCM')
70-
//implementation 'ly.kite:kite-print-sdk:5.8.8'
71-
//implementation 'ly.kite:kite-print-sdk-gcm:5.8.8'
70+
//implementation 'ly.kite:kite-print-sdk:5.8.9'
71+
//implementation 'ly.kite:kite-print-sdk-gcm:5.8.9'
7272

7373
// Uncomment these if you want leak detection (and it works for you)
7474
//debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1'

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=5.8.8
2-
VERSION_CODE=108
1+
VERSION_NAME=5.8.9
2+
VERSION_CODE=111
33
GROUP=ly.kite
44
POM_PACKAGING=aar
55
POM_URL=https://github.com/OceanLabs/Android-Print-SDK

0 commit comments

Comments
 (0)