May 15, '05 10:22:00AM • Contributed by: neema_saeedi
I was excited to see that with the launch of Tiger, iSync 2.0 was going to have native support for a lot more Symbian devices. However, to my disappointment, my 6670 didn't work with iSync. I was puzzled for a little while, but ended up figuring it out. iSync2 supports the 6670, but not the 6670b, which is the 850mhz model of the handset for North American 850mhz/1900mhz networks.
All you need to do is add a bit of code to iSync and you're good to go! Add the following code to /Applications: iSync.app: Contents: PlugIns: ApplePhoneConduit.syncdevice: Contents: PlugIns: PhoneModelsSync.phoneplugin: Contents: Resources: MetaClasses.plist:
<key>com.nokia.6670b</key>
<dict>
<key>Identification</key>
<dict>
<key>com.apple.gmi+gmm</key>
<string>Nokia+Nokia 6670b</string>
</dict>
<key>InheritsFrom</key>
<array>
<string>com.nokia.serie60v2.0</string>
</array>
<key>Services</key>
<array>
<dict>
<key>ServiceName</key>
<string>com.apple.model</string>
<key>ServiceProperties</key>
<dict>
<key>ModelName</key>
<string>6670b</string>
<key>PhoneIcon</key>
<string>NOK6670.tiff</string>
</dict>
</dict>
</array>
</dict>
There you go! Hope that helps!
