Skip to content

Commit 9c2e7b1

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/flutter
2 parents 8f46499 + df90292 commit 9c2e7b1

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

packages/google-signin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

packages/google-signin/platforms/android/include.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ repositories {
33
}
44

55
dependencies {
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
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pod 'GoogleSignIn', '~> 6.0'
1+
pod 'GoogleSignIn', '~> 7.0'

packages/imagepicker/index.ios.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

packages/imagepicker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)