<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.cwde.freeshisen"
- android:versionCode="2"
+ android:versionCode="3"
android:versionName="0.1" >
<uses-sdk
<string name="options">Options</string>
<string name="about">About</string>
<string name="aboutText">\n
-© 2013 knilch.\n
+© 2013 knilch - freeshisen@cwde.de\n
Most of the gameplay code and application structure taken from ShisenSho:\n
© 2013 contact.proofofconcept@gmail.com\n
Images taken from kshisen (Shisen Sho 1.5.1), from the package kdegames:\n
PackageInfo pInfo;
try {
pInfo = getPackageManager().getPackageInfo(getPackageName(), PackageManager.GET_META_DATA);
- String aboutTitle = String.format("About %s", getString(R.string.app_name));
- String versionString = String.format("Version: %s", pInfo.versionName);
+ String appname = getString(R.string.app_name);
+ String aboutTitle = "About " + appname;
+ String versionString = appname + " "+ pInfo.versionName;
String aboutText = getString(R.string.aboutText);
// Set up the TextView
// Set some padding
message.setPadding(5, 5, 5, 5);
// Set up the final string
- message.setText(versionString + "\n" + s);
+ message.setText(versionString + s);
// Now linkify the text
Linkify.addLinks(message, Linkify.ALL);