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