-
-
Notifications
You must be signed in to change notification settings - Fork 197
Allow Info.plist and AndroidManifest.xml files to be placed in App_Resources #1089
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Actually I believe |
+1, this would be extremely helpful for both iOS and Android |
+1 it's painful to maintain important files in a volatile folder |
Support for custom Android build.gradle and iOS Podfiles would be nice too. |
+1 I used XCode today to set a number of project settings (supported orientations, iOS devices, etc), so it would be great if these settings were more "durable" and easier to persist in source control (since the "platforms" folder is usually ignored). Especially when so many debugging/troubleshooting steps include "Delete your platforms ios/android directories." :) |
It's interesting that it does work when a plugin uses permissions such as @dapriett's https://github.com/dapriett/nativescript-google-maps-sdk These permissions do get added. Is there way to incorporate that same mechanism for the regular App_Resources files? The merge of an xml (for android) is being handled in the plugin service.. |
The support for Android has landed in 1.5. This means that if you have an |
+10 for iOS support |
When can we expect this for iOS, please? |
Android support seems to be broken as well in 1.5.0. Adding AndroidManifest.xml to App_Resources, brakes the build step. |
@sect2k Maybe NativeScript/android#294 is the issue you have hit? |
@ligaz it seems the problem was this issue here NativeScript/android@cd51a51. After fixing the comma problem the build step runs fine, and seems to work. |
The #1369 just landed. With the next version of the CLI release an Info.plist will be created upon build or upon creating a new project in |
Great. Is the Info.plist in |
+1 for plist merging for iOS |
@speigg: Yes, except for the bundle identifier that comes from the package.json. |
+1 for iOS support |
To customize my iOS apps I frequently need to alter my Info.plist the file. If I place an
appName-Info.plist
file inApp_Resources/iOS
, the file gets copied toplatforms/ios/appName/Resources
, but it needs to be copied toplatforms/ios/appName
.Can this be supported?
The text was updated successfully, but these errors were encountered: