Skip to content

Instantly share code, notes, and snippets.

@alunny
Created October 11, 2012 17:44
Show Gist options
  • Save alunny/3874222 to your computer and use it in GitHub Desktop.
Save alunny/3874222 to your computer and use it in GitHub Desktop.
{
"config-file": {
"target": "AndroidManifest.xml",
"parent": "/manifest/application",
"childNode": {
"activity": {
"android:name": "com.phonegap.plugins.childBrowser.ChildBrowser",
"android:label": "@string/app_name",
"childNode": {
"intent-filter": {}
}
}
}
}
}
{
"config-file": {
"target": "AndroidManifest.xml",
"parent": "/manifest/application",
"childNode": "<activity android:name=\"com.phonegap.plugins.childBrowser.ChildBrowser\" android:label=\"@string/app_name\"><intent-filter></intent-filter></activity>"
}
}
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.phonegap.plugins.childBrowser.ChildBrowser"
android:label="@string/app_name">
<intent-filter>
</intent-filter>
</activity>
</config-file>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment