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 03, '05 05:02:37AM

Mine works after all with the original edit, I had failed to add the array tag since it was a second string.



[ Reply to This | # ]
10.4: Fix iSync support for Motorola V220
Authored by: gunkmail on Jun 04, '05 08:11:05PM

is it possible for someone to post the entire V220 section of the file? I fear that in my excitment to try this a screwed up the section. I have tried all of the tips and cannot get mine to work.

thanks alot



[ Reply to This | # ]
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 | # ]