Commit 97fd7b07 authored by Burcu Dogan's avatar Burcu Dogan

misc/ios: fix plist indentation and whitespace

Change-Id: Ida727edb592e77918ca5511b41456786d57c97b2
Reviewed-on: https://go-review.googlesource.com/9634Reviewed-by: default avatarDavid Crawshaw <crawshaw@golang.org>
parent 8fb55f9d
...@@ -626,25 +626,31 @@ func entitlementsPlist() string { ...@@ -626,25 +626,31 @@ func entitlementsPlist() string {
<key>com.apple.developer.team-identifier</key> <key>com.apple.developer.team-identifier</key>
<string>` + teamID + `</string> <string>` + teamID + `</string>
</dict> </dict>
</plist>` </plist>
`
} }
const resourceRules = `<?xml version="1.0" encoding="UTF-8"?> const resourceRules = `<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>rules</key> <key>rules</key>
<dict> <dict>
<key>.*</key><true/> <key>.*</key>
<key>Info.plist</key> <true/>
<key>Info.plist</key>
<dict> <dict>
<key>omit</key> <true/> <key>omit</key>
<key>weight</key> <real>10</real> <true/>
<key>weight</key>
<integer>10</integer>
</dict> </dict>
<key>ResourceRules.plist</key> <key>ResourceRules.plist</key>
<dict> <dict>
<key>omit</key> <true/> <key>omit</key>
<key>weight</key> <real>100</real> <true/>
<key>weight</key>
<integer>100</integer>
</dict> </dict>
</dict> </dict>
</dict> </dict>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment