30 lines
1.9 KiB
XML
30 lines
1.9 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="org.commoditysoftware.greentravel"
|
||
|
android:versionCode="1"
|
||
|
android:versionName="1.01">
|
||
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
||
|
<service android:name=".GreenTravelService" >
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN"/>
|
||
|
</intent-filter>
|
||
|
</service>
|
||
|
<activity android:theme="@android:style/Theme.Light" android:name=".MainSplash"
|
||
|
android:label="@string/app_name">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
<activity android:theme="@android:style/Theme.Light" android:name=".Screen1"> </activity>
|
||
|
<activity android:theme="@android:style/Theme.Light" android:name=".Screen4"> </activity>
|
||
|
<activity android:theme="@android:style/Theme.Light" android:name=".Screen5"> </activity>
|
||
|
<activity android:theme="@android:style/Theme.Light" android:name=".Screen6"> </activity>
|
||
|
<activity android:theme="@android:style/Theme.Light" android:name=".Screen7"> </activity>
|
||
|
<activity android:theme="@android:style/Theme.Light" android:name=".StartTrip"> </activity>
|
||
|
<activity android:theme="@android:style/Theme.Light" android:name=".EndTripActivity"> </activity>
|
||
|
<activity android:theme="@android:style/Theme.Light" android:name="org.commoditysoftware.greentravel.SettingsActivity"> </activity>
|
||
|
</application>
|
||
|
<uses-sdk android:minSdkVersion="7" />
|
||
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||
|
</manifest>
|