File tree Expand file tree Collapse file tree 5 files changed +7
-5
lines changed
Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @nativescript/google-signin" ,
3- "version" : " 1 .0.1 " ,
3+ "version" : " 2 .0.0 " ,
44 "description" : " Google Sign-in for your NativeScript applications" ,
55 "main" : " index" ,
66 "typings" : " index.d.ts" ,
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ repositories {
33}
44
55dependencies {
6- implementation ' com.google.android.gms:play-services-auth:19.2 .0'
6+ implementation ' com.google.android.gms:play-services-auth:20.5 .0'
77}
Original file line number Diff line number Diff line change 1- pod 'GoogleSignIn' , '~> 6 .0'
1+ pod 'GoogleSignIn' , '~> 7 .0'
Original file line number Diff line number Diff line change @@ -119,7 +119,9 @@ class ImagePickerControllerDelegate extends NSObject implements QBImagePickerCon
119119 fileMap [ existingFileName ] . path = urlAsset . URL . toString ( ) . replace ( 'file://' , '' ) ;
120120 } ) ;
121121 } else {
122- phAssetImage . requestContentEditingInputWithOptionsCompletionHandler ( new PHContentEditingInputRequestOptions ( ) , ( thing ) => {
122+ let imageOptions = new PHContentEditingInputRequestOptions ( ) ;
123+ imageOptions . networkAccessAllowed = true ;
124+ phAssetImage . requestContentEditingInputWithOptionsCompletionHandler ( imageOptions , ( thing ) => {
123125 fileMap [ existingFileName ] . path = thing . fullSizeImageURL . toString ( ) . replace ( 'file://' , '' ) ;
124126 } ) ;
125127 }
Original file line number Diff line number Diff line change 11{
22 "name" : " @nativescript/imagepicker" ,
3- "version" : " 2.0.0 " ,
3+ "version" : " 2.0.1 " ,
44 "description" : " A plugin for the NativeScript framework implementing multiple image picker" ,
55 "main" : " index" ,
66 "typings" : " index.d.ts" ,
You can’t perform that action at this time.
0 commit comments