Hey guys .. like to check with you guys . Previously I download a project that is based on m3 version . Did a conversion on the .xml . Did I do the correct conversion based on this .xml ? Apart from that , beside modifying the .xml codes , what else do I need to do ?
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.anddev.android.friendfinder"> <uses-permission android:id="android.permission.READ_CONTACTS"/> <uses-permission android:id="android.permission.CALL_PHONE"/> <application android:icon="@drawable/icon"> <activity android:name=".FriendFinder" android:label="@string/ main_title"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".FriendFinderMap" android:label="@string/map_title"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity> </application> </manifest> --~--~---------~--~----~------------~-------~--~----~ 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] Announcing the new M5 SDK! http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

