diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 28eecf780..668053512 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,7 +1,7 @@ + android:versionCode="1016" android:versionName="1.0.16" android:installLocation="auto"> diff --git a/default.properties b/default.properties index a1ef8e9ff..51e933a98 100644 --- a/default.properties +++ b/default.properties @@ -10,4 +10,4 @@ # Indicates whether an apk should be generated for each density. split.density=false # Project target. -target=android-3 +target=android-8 diff --git a/res/values/strings.xml b/res/values/strings.xml index 30d4accdc..3bd9504ce 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -56,7 +56,7 @@ No Never remind me %s, do you want to go to the settings page ? -No SIP account has been configured yet, do you want to go to the settings page ? +No SIP account has been configured yet, do you want to go to the settings page ?\n Need help ?\n http://www.linphone.org Cannot initiate a new call because a call is already engaged History Cannot build destination address from [%s] diff --git a/src/org/linphone/DialerActivity.java b/src/org/linphone/DialerActivity.java index c5dc2132c..b3f11280e 100644 --- a/src/org/linphone/DialerActivity.java +++ b/src/org/linphone/DialerActivity.java @@ -374,7 +374,12 @@ public class DialerActivity extends Activity implements LinphoneCoreListener { } catch (LinphoneConfigException ec) { Log.w(LinphoneService.TAG,"no valid settings found",ec); AlertDialog.Builder builder = new AlertDialog.Builder(this); - builder.setMessage(getString(R.string.initial_config_error)) + //builder.setMessage(getString(R.string.initial_config_error)) + TextView lDialogTextView = new TextView(this); + lDialogTextView.setAutoLinkMask(0x0f/*all*/); + lDialogTextView.setPadding(10, 10, 10, 10); + lDialogTextView.setText(getString(R.string.initial_config_error)); + builder.setCustomTitle(lDialogTextView) .setCancelable(false) .setPositiveButton(getString(R.string.yes), new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { @@ -538,7 +543,7 @@ public class DialerActivity extends Activity implements LinphoneCoreListener { } public void onClick(View v) { LinphoneCore lc = LinphoneService.instance().getLinphoneCore(); - //stopDtmf(); + stopDtmf(); if (lc.isIncall()) { lc.sendDtmf(mKeyCode.charAt(0)); } else {