Added couple of comments and executed eclipse's autoformat.
This commit is contained in:
parent
46ee5f943e
commit
16334ca53a
@ -12,11 +12,11 @@
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
<application
|
||||
android:name=".android.Application"
|
||||
android:debuggable="true"
|
||||
android:icon="@drawable/or_launcher"
|
||||
android:killAfterRestore="true"
|
||||
android:label="@string/app_name"
|
||||
android:name=".android.Application" >
|
||||
android:label="@string/app_name" >
|
||||
<activity
|
||||
android:name=".android.Main"
|
||||
android:theme="@android:style/Theme.Black.NoTitleBar" >
|
||||
@ -27,8 +27,8 @@
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:label="@string/app_name"
|
||||
android:name=".android.rocket.OpenRocketViewer" >
|
||||
android:name=".android.rocket.OpenRocketViewer"
|
||||
android:label="@string/app_name" >
|
||||
|
||||
<!--
|
||||
I don't understand why I need to have two different intent filters.
|
||||
@ -37,6 +37,7 @@
|
||||
file browser to associate the correct launcher icon. the second intent-filter
|
||||
is actually invoked when a file is selected.
|
||||
-->
|
||||
<!-- this intent filter convinces the file browser to display icons -->
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
@ -48,6 +49,7 @@
|
||||
android:pathPattern=".*\\.ork"
|
||||
android:scheme="file" />
|
||||
</intent-filter>
|
||||
<!-- this intent is sent when a file is selected in file browser -->
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
@ -67,12 +69,12 @@
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:label="@string/MotorListTitle"
|
||||
android:name=".android.motor.MotorHierarchicalBrowser" />
|
||||
android:name=".android.motor.MotorHierarchicalBrowser"
|
||||
android:label="@string/MotorListTitle" />
|
||||
<activity android:name=".android.motor.MotorDetails" />
|
||||
<activity
|
||||
android:label="@string/MotorListTitle"
|
||||
android:name=".android.thrustcurve.TCQueryActivity" />
|
||||
android:name=".android.thrustcurve.TCQueryActivity"
|
||||
android:label="@string/MotorListTitle" />
|
||||
<activity android:name=".android.simulation.SimulationViewer" />
|
||||
<activity android:name=".android.simulation.GraphicalActivity" />
|
||||
</application>
|
||||
|
Loading…
x
Reference in New Issue
Block a user