source: other-projects/diy-streetview-pano-capture/trunk/Client/AndroidManifest.xml@ 26882

Last change on this file since 26882 was 26882, checked in by davidb, 11 years ago

Joshua Hollands software for operation with the diy camera built for Smoke and Mirrors 2012

File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.theboboon.diy.streetview.remote.control"
4 android:versionCode="1"
5 android:versionName="1.0" >
6
7 <uses-sdk
8 android:minSdkVersion="13"
9 android:targetSdkVersion="17" />
10
11 <uses-permission android:name="android.permission.INTERNET" />
12 <uses-permission android:name="android.permission.VIBRATE" />
13
14 <application
15 android:allowBackup="false"
16 android:icon="@drawable/ic_launcher"
17 android:label="@string/app_name"
18 android:theme="@style/AppTheme" >
19 <activity
20 android:name="com.theboboon.diy.streetview.remote.control.Main"
21 android:configChanges="orientation"
22 android:label="@string/title_activity_main"
23 android:screenOrientation="portrait" >
24 <intent-filter>
25 <action android:name="android.intent.action.MAIN" />
26
27 <category android:name="android.intent.category.LAUNCHER" />
28 </intent-filter>
29 </activity>
30 <activity
31 android:name="com.theboboon.diy.streetview.remote.control.SettingsActivity"
32 android:label="@string/title_activity_settings" >
33 </activity>
34 </application>
35
36</manifest>
Note: See TracBrowser for help on using the repository browser.