Merge pull request #755 from Zahnstocher/patch-1
Don't match space, since it deletes properties
This commit is contained in:
commit
1eed642ceb
1 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@
|
|||
<then>
|
||||
<property name="package.name" value="net.osmand.sherpafy" />
|
||||
<property name="app.name" value="Sherpafy" />
|
||||
<replaceregexp file="AndroidManifest.xml" match='"@drawable/(.*)"' replace='"@drawable/icon_sherpafy"' byline="true" />
|
||||
<replaceregexp file="AndroidManifest.xml" match='"@drawable/([^\s]*)"' replace='"@drawable/icon_sherpafy"' byline="true" />
|
||||
</then>
|
||||
</if>
|
||||
<if>
|
||||
|
@ -88,7 +88,7 @@
|
|||
<then>
|
||||
<property name="package.name" value="net.osmand" />
|
||||
<property name="app.name" value="OsmAnd" />
|
||||
<replaceregexp file="AndroidManifest.xml" match='"@drawable/(.*)"' replace='"@drawable/icon_free"' byline="true" />
|
||||
<replaceregexp file="AndroidManifest.xml" match='"@drawable/([^\s]*)"' replace='"@drawable/icon_free"' byline="true" />
|
||||
</then>
|
||||
</if>
|
||||
<if>
|
||||
|
@ -98,7 +98,7 @@
|
|||
<then>
|
||||
<property name="package.name" value="net.osmand.plus" />
|
||||
<property name="app.name" value="OsmAnd+" />
|
||||
<replaceregexp file="AndroidManifest.xml" match='"@drawable/(.*)"' replace='"@drawable/icon"' byline="true" />
|
||||
<replaceregexp file="AndroidManifest.xml" match='"@drawable/([^\s]*)"' replace='"@drawable/icon"' byline="true" />
|
||||
</then>
|
||||
</if>
|
||||
<if>
|
||||
|
|
Loading…
Reference in a new issue