mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-12 10:28:13 -05:00
4e4abc99e2
TODO: Add retweeted field to DB, make fix SavedNewsActivity display.
42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="edu.uncc.itcs4180.hw5"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="12"
|
|
android:targetSdkVersion="18" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
<activity
|
|
android:name="edu.uncc.itcs4180.hw5.MainActivity"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="edu.uncc.itcs4180.hw5.TweetsListActivity"
|
|
android:label="@string/title_activity_tweets_list" >
|
|
</activity>
|
|
<activity
|
|
android:name="edu.uncc.itcs4180.hw5.DetailedTweetActivity"
|
|
android:label="@string/title_activity_detailed_tweet" >
|
|
</activity>
|
|
<activity
|
|
android:name="edu.uncc.itcs4180.hw5.SavedNewsActivity"
|
|
android:label="@string/title_activity_saved_news" >
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|