Failed to commit the AndroidManifest.xml when I changed the main and openrocketloader classes to use ActionBarFragmentActivity.

This commit is contained in:
Kevin Ruland 2012-02-26 00:27:14 +00:00
parent c514314ed3
commit 0165840233

View File

@ -19,8 +19,7 @@
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/AppTheme" > android:theme="@style/AppTheme" >
<activity <activity
android:name=".android.Main" android:name=".android.Main">
android:theme="@style/AppTheme.NoTitleBar" >
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
@ -28,8 +27,7 @@
</intent-filter> </intent-filter>
</activity> </activity>
<activity <activity
android:name=".android.rocket.OpenRocketLoaderActivity" android:name=".android.rocket.OpenRocketLoaderActivity">
android:theme="@style/AppTheme.NoTitleBar" >
<!-- <!--
I don't understand why I need to have two different intent filters. I don't understand why I need to have two different intent filters.