diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-09-26 00:47:11 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-09-26 00:47:11 +0200 |
| commit | 6a9186aea6b85beef28e3eb765fbf2322a1c7890 (patch) | |
| tree | a4a2ad8fcaa8783b4ed3643e950a003c2c0f9de6 /StoneIsland/plugins/cordova-plugin-app-name/plugin.xml | |
| parent | b6a9175ffeb718994d6e68c4e3e783449c4f34cd (diff) | |
wtf broken
Diffstat (limited to 'StoneIsland/plugins/cordova-plugin-app-name/plugin.xml')
| -rw-r--r-- | StoneIsland/plugins/cordova-plugin-app-name/plugin.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/StoneIsland/plugins/cordova-plugin-app-name/plugin.xml b/StoneIsland/plugins/cordova-plugin-app-name/plugin.xml new file mode 100644 index 00000000..6e7c5480 --- /dev/null +++ b/StoneIsland/plugins/cordova-plugin-app-name/plugin.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-app-name" version="1.0.4"> + <name>App Namer</name> + <author>Carlos "blakgeek" Lawton</author> + <description> + Cordova/Phonegap plugin that allows you to put spaces in the display name of your app. + </description> + <keywords>cordova, ios, app, name, spaces</keywords> + <license>MIT</license> + <engines> + <engine name="cordova" version=">=3.0.0"/> + </engines> + + <preference name="APP_NAME"/> + <hook type="after_prepare" src="src/rename-app.js"/> + + <platform name="android"> + <config-file target="config.xml" parent="/*"> + <preference name="AppName" value="$APP_NAME"/> + </config-file> + </platform> + + <platform name="ios"> + <config-file target="*-Info.plist" parent="CFBundleName"> + <string>$APP_NAME</string> + </config-file> + <config-file target="*-Info.plist" parent="CFBundleDisplayName"> + <string>$APP_NAME</string> + </config-file> + </platform> +</plugin> |
