dashman wrote: > developing for android on a mac [sic] laptop. > > any issues? >
Not really. > > compatible with eclipse and the sdk. > Eclipse and the Android SDK are both available for Mac. > > i [sic] plan to have my main dev on a windows desktop. > > are the files compatible across the two platforms at the binary > level. > Java: WORA. The text files can differ in that Mac and Windows have different line-end conventions. Your source-code repository should manage that transparently for you. The system should ignore the differences anyway. Make sure all XML and Java source (and really all text files) are encoded in UTF-8. This is easy with an Eclipse setting. (Obviously the XML "<%xml...>" processing directive must specify the same encoding as the XML file.) Bytecode is bytecode. APKs are APKs, and their compatibility is with Android devices, not Windows or Mac. -- Lew -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

