Build 4665 (THIS IS A BETA RELEASE OF Alpha Anywhere)
Addins: 4990 (THIS IS A BETA RELEASE OF ADDINS)
So I have had no luck getting the cli-7.0.1 using the new or old builder and cli-6.5.0 (though based on alpha documentation I need the new builder for iPhone X support). Below are the issues I am running into.
I have updated to using the storyboard and 9-patch images for the splash screens (iOS and Android respectively) and all of this works well. When I go into the config file I have tried all the options for NSPhotoLibraryUsageDescription below and not matter what I still get the error from apple saying the info.plist key is missing for NSPhotoLibraryUsageDescription.
Example alpha proposes
PhoneGap documentation (tried modes merge & replace and overwrite = true)
Using the old key syntax
Using the params on the plugin
Another odd thing I have run into while using cli-7.0.1 with the old builder is that I don't get any Android icons (checked the phonegap projects folders and all the icons are in there). Also, I never get an error stating I need the NSCameraUsageDescription whether I put that one in there or not.
Hopefully someone else is seeing similar behavior and has found a fix.
Addins: 4990 (THIS IS A BETA RELEASE OF ADDINS)
So I have had no luck getting the cli-7.0.1 using the new or old builder and cli-6.5.0 (though based on alpha documentation I need the new builder for iPhone X support). Below are the issues I am running into.
I have updated to using the storyboard and 9-patch images for the splash screens (iOS and Android respectively) and all of this works well. When I go into the config file I have tried all the options for NSPhotoLibraryUsageDescription below and not matter what I still get the error from apple saying the info.plist key is missing for NSPhotoLibraryUsageDescription.
Example alpha proposes
Code:
<config-file platform="ios" parent="NSPhotoLibraryUsageDescription" mode="replace"> <string>This app uploads images of receipts.</string> </config-file>
Code:
<edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge"> <string>This app uploads images of receipts.</string> </edit-config>
Code:
<key>NSPhotoLibraryUsageDescription</key> <string>This app uploads images of receipts.</string>
Code:
<plugin name="cordova-plugin-camera" source="npm"> <param name="CAMERA_USAGE_DESCRIPTION" value="Used to attach photos to your projects" /> <param name="PHOTOLIBRARY_USAGE_DESCRIPTION" value="We are using the Photo Library for something..." /> </plugin>
Hopefully someone else is seeing similar behavior and has found a fix.