Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.4: Fix iSync support for Motorola V220' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.4: Fix iSync support for Motorola V220
Authored by: echo on Jun 04, '05 09:46:26PM
This shows the top of the V220 section which encludes all that is edited. Notice because you're adding two second strings where previously there was only one, they now need to be both enclosed in array tags. As reported by others, if your model requires the "ENS" (not sure how you identify that), then all 4 strings end with "V220ENS" instead of "V220".

- ORIGINAL -


<key>com.motorola.V220</key>
<dict>
	<key>Identification</key>
	<dict>
		<key>com.apple.cgmi+cgmm</key>
		<string>"Motorola CE, Copyright 2000"+"GSM900","GSM1800","GSM1900","MODEL=V220"</string>
		<key>com.apple.gmi+gmm</key>
		<string>"Motorola CE, Copyright 2000"+"GSM900","GSM1800","GSM1900","MODEL=V220"</string>
	</dict>
- EDIT -

<key>com.motorola.V220</key>
<dict>
	<key>Identification</key>
	<dict>
		<key>com.apple.cgmi+cgmm</key>
	<array>
			<string>"Motorola CE, Copyright 2000"+"GSM900","GSM1800","GSM1900","MODEL=V220"</string>
			<string>"Motorola CE, Copyright 2000"+"GSM900","GSM1900","GSM850","MODEL=V220"</string>
	</array>
		<key>com.apple.gmi+gmm</key>
	<array>
			<string>"Motorola CE, Copyright 2000"+"GSM900","GSM1800","GSM1900","MODEL=V220"</string>
			<string>"Motorola CE, Copyright 2000"+"GSM900","GSM1900","GSM850","MODEL=V220"</string>
	</array>
	</dict>


[ Reply to This | # ]