Hey guys ..
Just to check with you guys of the conversion .
Previously downloaded a project based on m3 . Did modification through
the .xml with the following ->

<?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>

Please advice if I did the correct conversion for this .xml file .
Apart from that , what other modification to other class file /
permission etc. do I need to look out for ?
Thanks in advance

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to