Frantisek Augusztin
Frantisek Augusztin
Cordova plugins come in many forms. What you are trying to (incorrectly btw) describe is a plugin which provides new functions to Cordova applications. This plugin is a second kind...
The picture you posted has literally ZERO things with this repository. This repository adds a Cordova hook to the build process which modifies files in platforms/ios folder exclusively. It doesn't...
That is an OS limitation, nothing can be done about it : https://developer.android.com/about/versions/10/privacy/changes#non-resettable-device-ids > Restriction on non-resettable device identifiers Starting in Android 10, apps must have the READ_PRIVILEGED_PHONE_STATE privileged permission...
Settings.Secure.ANDROID_ID is not IMEI. It is a unique ID, but not IMEI. https://developer.android.com/reference/android/provider/Settings.Secure#ANDROID_ID > On Android 8.0 (API level 26) and higher versions of the platform, a 64-bit number (expressed...
As a stopgap solution, you can use the [cordova-diagnostic-plugin](https://github.com/dpa99c/cordova-diagnostic-plugin#iscamerarollauthorized)'s camera roll authorization methods, that is isCameraRollAuthorized and getCameraRollAuthorizationStatus to query state and requestCameraRollAuthorization to request user for the access right.
warning: Insecure world writable dir /Users/anonymous/project/app-name-v5/node_modules/.bin in PATH, mode 040757 This error comes from Cocoapods, or to be more specific, Ruby. This has nothing to do with this plugin, and...
@tomavic as mentioned above, do you have this in your config.xml ? `` The code in your own screenshot has a conditional code which depends on this preference.
My Nokia 7.1 with Android 10 vibrates using this plugin. One thing to note is that 200ms is a really low value, it is the lowest value my phone vibrates...
It can't find ASAuthorizationScope. That type has been added in [iOS 13.0](https://developer.apple.com/documentation/authenticationservices/asauthorizationscope?language=objc). iOS 13.0 SDK was added in [Xcode 11.0](https://en.wikipedia.org/wiki/Xcode#Xcode_11.x_(since_SwiftUI_framework)). Are you building the iOS application with Xcode 11.0 or...
The only reliable solution is to communicate the token to your backend servers, which then communicates to Apple servers, where you get the email on every request: https://developer.apple.com/documentation/sign_in_with_apple/sign_in_with_apple_rest_api/authenticating_users_with_sign_in_with_apple https://developer.apple.com/documentation/sign_in_with_apple/generate_and_validate_tokens Not...