View Single Post
Old 04-26-2010, 03:41 PM   #3
techiem2
Edge User
 
Ok, here's the diff between the 2 manifests. (< is old file, > is new file)
So, the version changed.
They added a couple new activities.
They added a widget.
They added the OnClearReceiver receiver (whatever that does).
They added the use of the google android maps library (hmm....).
They removed access to the user's contacts.

Code:
2c2
< <manifest android:versionCode="7" android:versionName="1.2.3" package="com.seesmic"
---
> <manifest android:versionCode="8" android:versionName="1.3" package="com.seesmic"
29a30,31
>         <activity android:label="@string/app_name" android:name=".ui.RetweetsSpace" />
>         <activity android:label="@string/app_name" android:name=".ui.RetweetsTimeline" />
50a53
>         <activity android:label="@string/app_name" android:name=".ui.TweetMap" />
51a55
>         <service android:name=".ui.widget.WidgetService" />
52a57
>         <receiver android:name=".core.OnClearReceiver" />
57a63,77
>         <activity android:theme="@android:style/Theme.Dialog" android:name=".ui.widget.Widget1Configure">
>             <intent-filter>
>                 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
>             </intent-filter>
>         </activity>
>         <receiver android:name=".ui.widget.Widget1">
>             <intent-filter>
>                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
>                 <action android:name="com.seesmic.ui.widget.UPDATE_ALL" />
>                 <action android:name="com.seesmic.ui.widget.CLICK_NEXT" />
>                 <action android:name="com.seesmic.ui.widget.CLICK_PREVIOUS" />
>             </intent-filter>
>             <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget1_info" />
>         </receiver>
>         <uses-library android:name="com.google.android.maps" />
68d87
<     <uses-permission android:name="android.permission.READ_CONTACTS" />