0
0
mirror of https://github.com/etesync/android.git synced 2024-09-20 13:08:51 +02:00

Version bump to 0.3.6

* show app version in main activity
This commit is contained in:
rfc2822 2013-10-30 17:22:24 +01:00
parent a45aed6914
commit da4443da62
4 changed files with 5 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.bitfire.davdroid"
android:versionCode="8"
android:versionName="0.3.5-alpha" >
android:versionCode="10"
android:versionName="0.3.6-alpha" >
<uses-sdk
android:minSdkVersion="14"

View File

@ -9,7 +9,7 @@ package at.bitfire.davdroid;
public class Constants {
public static final String
APP_VERSION = "0.3.5-alpha",
APP_VERSION = "0.3.6-alpha",
ACCOUNT_TYPE = "bitfire.at.davdroid",

View File

@ -20,6 +20,8 @@ public class MainActivity extends Activity {
setContentView(R.layout.activity_main);
setTitle("DAVdroid " + Constants.APP_VERSION);
TextView tv = (TextView)findViewById(R.id.text_info);
tv.setText(Html.fromHtml(getString(R.string.html_info)));
tv.setMovementMethod(LinkMovementMethod.getInstance());

View File

@ -7,7 +7,6 @@
******************************************************************************/
package at.bitfire.davdroid.resource;
import java.io.IOException;
import java.net.URISyntaxException;
import at.bitfire.davdroid.webdav.WebDavCollection.MultigetType;