Skip to content

Commit

Permalink
Add compatibility with Android 2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
PurpleGuitar committed Dec 10, 2011
1 parent 552f7a8 commit 5018ea5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.metawatch.manager"
android:versionCode="1"
android:installLocation="internalOnly" android:versionName="0.2.4">
<uses-sdk android:minSdkVersion="8" />
android:versionName="0.2.4">
<uses-sdk android:minSdkVersion="7" />
<supports-screens android:resizeable="true" android:normalScreens="true" android:anyDensity="true" android:largeScreens="true" android:smallScreens="true"></supports-screens>

<uses-permission android:name="android.permission.BLUETOOTH"></uses-permission>
Expand Down
2 changes: 1 addition & 1 deletion TODO
@@ -1,7 +1,7 @@
TO DO
=======================================================================


- Add compatibility with Android 2.1.

WISH LIST
=======================================================================
Expand Down
2 changes: 1 addition & 1 deletion project.properties
Expand Up @@ -8,4 +8,4 @@
# project structure.

# Project target.
target=Google Inc.:Google APIs:8
target=android-7
10 changes: 5 additions & 5 deletions res/layout/notification.xml
@@ -1,15 +1,15 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/notificationbg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">

<ImageButton
android:id="@+id/notification_button"
android:background="@null"
android:layout_weight="0"
android:layout_width="48dip"
android:layout_height="match_parent" />
android:layout_height="fill_parent" />

<LinearLayout
android:paddingLeft="16dip"
Expand All @@ -24,7 +24,7 @@
android:ellipsize="marquee"
android:singleLine="true"
android:layout_gravity="left"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

<!-- style="@android:style/TextAppearance.StatusBar.EventContent" -->
Expand All @@ -33,7 +33,7 @@
android:maxLines="2"
android:scrollHorizontally="true"
android:ellipsize="end"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

</LinearLayout>
Expand Down

0 comments on commit 5018ea5

Please sign in to comment.