Skip to content

Commit

Permalink
removed backslash from installstore parameters in xsl (#19)
Browse files Browse the repository at this point in the history
* removed backslash from installstore parameters in xsl
  • Loading branch information
CodeCombiner authored and rampr committed Aug 9, 2018
1 parent f50cf24 commit acffb2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/manifest.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<xsl:template match="comment()" />

<xsl:template match="meta-data[@android:name='INSTALL_STORE']">
<meta-data android:name="INSTALL_STORE" android:value="\{$install_store}"/>
<meta-data android:name="INSTALL_STORE" android:value="{$install_store}"/>
</xsl:template>

<xsl:template match="@*|node()">
Expand Down

0 comments on commit acffb2c

Please sign in to comment.