Skip to content

Commit

Permalink
bump to WebSMS-Connector-MeinBMW v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
felixb committed Sep 26, 2010
1 parent 1c8f489 commit 1df0755
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
23 changes: 14 additions & 9 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
This file is part of MeinBMW Connector for WebSMS by Felix Bechstein.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
-->
<!--
This program is distributed in the hope that it will be useful, but
Expand All @@ -18,8 +18,8 @@
not, see <http://www.gnu.org/licenses/>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="info.graffy.android.websms.connector.meinbmw" android:versionName="1.0"
android:versionCode="1001">
package="info.graffy.android.websms.connector.meinbmw"
android:versionName="1.1" android:versionCode="1003">
<application android:label="@string/app_name" android:icon="@drawable/icon"
android:debuggable="true">

Expand Down Expand Up @@ -48,19 +48,24 @@
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<receiver android:name="info.graffy.android.websms.connector.meinbmw.ConnectorMeinBMW"
<receiver
android:name="info.graffy.android.websms.connector.meinbmw.ConnectorMeinBMW"
android:enabled="true" android:exported="true">
<intent-filter>
<action android:name="info.graffy.android.websms.connector.meinbmw.RUN_SEND" />
<action android:name="de.ub0r.android.websms.connector.UPDATE" />
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7" />
<supports-screens android:largeScreens="true"
android:normalScreens="true" android:smallScreens="true"

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
<supports-screens android:smallScreens="true"
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true" />
<uses-permission android:name="android.permission.INTERNET" />
<!-- WAKE_LOCK needed to make sure, sms are send even if user sends device to sleep. -->
<!--
WAKE_LOCK needed to make sure, sms are send even if user sends device
to sleep.
-->
<uses-permission android:name="android.permission.WAKE_LOCK" />
</manifest>
2 changes: 1 addition & 1 deletion default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
split.density=false
android.library.reference.1=../websms-api/
# Project target.
target=android-7
target=android-8
2 changes: 1 addition & 1 deletion res/values/connector_meinbmw_strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
-->
<resources>
<string name="app_name">WebSMS Connector: MeinBMW</string>
<string name="app_version">1.0</string>
<string name="app_version">1.1</string>
<string name="connector_meinbmw_author">Silas Graffy &lt;[email protected]&gt;</string>
<string name="connector_meinbmw_name">MeinBMW</string>
<string name="connector_meinbmw_preferences">Preferences - MeinBMW</string>
Expand Down

0 comments on commit 1df0755

Please sign in to comment.