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-07-18 14:42:27 +00:00
|
|
|
android:minSdkVersion="8"
|
2012-02-11 20:17:39 +00:00
|
|
|
android:targetSdkVersion="15" />
|
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:icon="@drawable/or_launcher"
|
|
|
|
android:killAfterRestore="true"
|
2012-02-11 20:17:39 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme" >
|
2012-01-09 19:00:19 +00:00
|
|
|
<activity
|
2012-03-14 01:29:43 +00:00
|
|
|
android:name=".android.Main"
|
2012-05-23 19:45:27 +00:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" >
|
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>
|
|
|
|
<!--
|
|
|
|
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-07-18 17:58:19 +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>
|
2012-07-18 17:58:19 +00:00
|
|
|
<activity
|
|
|
|
android:name=".android.rocket.OpenRocketViewer"
|
2012-06-21 19:10:06 +00:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2012-01-09 19:00:19 +00:00
|
|
|
<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>
|
2012-01-30 03:48:42 +00:00
|
|
|
<activity android:name=".android.motor.MotorBrowserActivity" />
|
2012-02-11 20:17:39 +00:00
|
|
|
<activity
|
|
|
|
android:name=".android.motor.BurnPlotActivity"
|
2012-05-23 19:45:27 +00:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2012-07-18 17:58:19 +00:00
|
|
|
<activity
|
|
|
|
android:name=".android.thrustcurve.TCQueryActivity"
|
2012-09-19 13:37:58 +00:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:theme="@style/AppTheme.Dialog" />
|
2012-02-11 20:17:39 +00:00
|
|
|
<activity
|
|
|
|
android:name=".android.simulation.SimulationViewActivity"
|
2012-05-23 19:45:27 +00:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2012-06-04 19:16:27 +00:00
|
|
|
<activity
|
|
|
|
android:name=".android.filebrowser.SimpleFileBrowser"
|
2012-05-25 20:46:00 +00:00
|
|
|
android:theme="@style/Theme.Sherlock.Dialog" />
|
2012-06-04 19:16:27 +00:00
|
|
|
|
|
|
|
<service android:name=".android.simservice.SimulationService" />
|
2012-01-22 02:44:17 +00:00
|
|
|
</application>
|
2011-12-24 00:38:22 +00:00
|
|
|
|
|
|
|
</manifest>
|