Skip to content

Commit

Permalink
reformatting and build target update
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Murphy committed Jan 29, 2012
1 parent d2cd769 commit 9fa39eb
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 21 deletions.
50 changes: 30 additions & 20 deletions Honeycomb/ActionModeMC/AndroidManifest.xml
@@ -1,22 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.commonsware.android.actionmodemc">

<application android:hardwareAccelerated="true"
android:icon="@drawable/cw"
android:label="@string/app_name">
<activity android:label="@string/app_name"
android:name="ActionModeDemo">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="4"
android:targetSdkVersion="11" />
<supports-screens android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.commonsware.android.actionmodemc">

<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="11"/>

<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"/>

<application
android:hardwareAccelerated="true"
android:icon="@drawable/cw"
android:label="@string/app_name">
<activity
android:name="ActionModeDemo"
android:label="@string/app_name"
android:uiOptions="splitActionBarWhenNarrow">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>

</manifest>
2 changes: 1 addition & 1 deletion Honeycomb/ActionModeMC/project.properties
Expand Up @@ -8,5 +8,5 @@
# project structure.

# Project target.
target=android-11
target=android-14
sdk-folder=/opt/android-sdk-linux_x86-1.1_r1

0 comments on commit 9fa39eb

Please sign in to comment.