2011-12-24 00:38:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-01-09 19:00:19 +00:00
|
|
|
package="net.sf.openrocket"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0" >
|
2012-01-06 03:12:27 +00:00
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
<uses-sdk
|
2012-01-12 19:41:16 +00:00
|
|
|
android:minSdkVersion="9"
|
|
|
|
android:targetSdkVersion="9" />
|
2012-01-06 03:12:27 +00:00
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2012-01-06 03:12:27 +00:00
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
<application
|
2012-01-11 14:54:00 +00:00
|
|
|
android:name=".android.Application"
|
2012-01-09 19:00:19 +00:00
|
|
|
android:debuggable="true"
|
|
|
|
android:icon="@drawable/or_launcher"
|
|
|
|
android:killAfterRestore="true"
|
2012-01-11 14:54:00 +00:00
|
|
|
android:label="@string/app_name" >
|
2012-01-09 19:00:19 +00:00
|
|
|
<activity
|
|
|
|
android:name=".android.Main"
|
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar" >
|
2012-01-11 14:54:00 +00:00
|
|
|
<intent-filter>
|
2012-01-09 19:00:19 +00:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2012-01-06 03:12:27 +00:00
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2012-01-11 14:54:00 +00:00
|
|
|
android:name=".android.rocket.OpenRocketViewer"
|
|
|
|
android:label="@string/app_name" >
|
2012-01-06 03:12:27 +00:00
|
|
|
|
2012-01-09 19:00:19 +00:00
|
|
|
<!--
|
|
|
|
I don't understand why I need to have two different intent filters.
|
2012-01-06 03:12:27 +00:00
|
|
|
Combining the <data> elements into a single field did not result in a working
|
|
|
|
application. The first intent-filter (with mimeType wildcard) convinces the
|
|
|
|
file browser to associate the correct launcher icon. the second intent-filter
|
2012-01-11 14:54:00 +00:00
|
|
|
is actually invoked when a file is selected.
|
2012-01-09 19:00:19 +00:00
|
|
|
-->
|
2012-01-11 14:54:00 +00:00
|
|
|
<!-- this intent filter convinces the file browser to display icons -->
|
|
|
|
<intent-filter>
|
2012-01-09 19:00:19 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="*"
|
|
|
|
android:mimeType="*/*"
|
|
|
|
android:pathPattern=".*\\.ork"
|
|
|
|
android:scheme="file" />
|
|
|
|
</intent-filter>
|
2012-01-11 14:54:00 +00:00
|
|
|
<!-- this intent is sent when a file is selected in file browser -->
|
|
|
|
<intent-filter>
|
2012-01-09 19:00:19 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="*"
|
|
|
|
android:pathPattern=".*\\.ork"
|
|
|
|
android:scheme="file" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name=".android.PreferencesActivity" >
|
2012-01-11 14:54:00 +00:00
|
|
|
<intent-filter>
|
2012-01-09 19:00:19 +00:00
|
|
|
<action android:name="net.sf.openrocket.android.PreferencesActivity" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.PREFERENCE" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2012-01-11 14:54:00 +00:00
|
|
|
android:name=".android.motor.MotorHierarchicalBrowser"
|
|
|
|
android:label="@string/MotorListTitle" />
|
2012-01-09 19:00:19 +00:00
|
|
|
<activity android:name=".android.motor.MotorDetails" />
|
|
|
|
<activity
|
2012-01-11 14:54:00 +00:00
|
|
|
android:name=".android.thrustcurve.TCQueryActivity"
|
|
|
|
android:label="@string/MotorListTitle" />
|
2012-01-09 19:00:19 +00:00
|
|
|
<activity android:name=".android.simulation.SimulationViewer" />
|
|
|
|
<activity android:name=".android.simulation.GraphicalActivity" />
|
2012-01-13 21:02:12 +00:00
|
|
|
<activity android:name=".android.filebrowser.SimpleFileBrowser" />
|
|
|
|
</application>
|
2011-12-24 00:38:22 +00:00
|
|
|
|
|
|
|
</manifest>
|