diff --git a/Published/ExaltedDice/AndroidManifest.xml b/Published/ExaltedDice/AndroidManifest.xml index e57ad97..8f6ec9d 100755 --- a/Published/ExaltedDice/AndroidManifest.xml +++ b/Published/ExaltedDice/AndroidManifest.xml @@ -1,7 +1,7 @@ + android:versionCode="12" android:versionName="1.0.1"> = mStart) && (val <= mEnd)) { - if (mCurrent != val) { - mPrevious = mCurrent; - mCurrent = val; - } - } - updateView(); - } - - private void validateInput(View v) { - String str = String.valueOf(((TextView) v).getText()); - if ("".equals(str)) { - - // Restore to the old value as we don't allow empty values - updateView(); - } else { - - // Check the new value and ensure it's in range - validateCurrentView(str); - } - } - /** * starts Vibrator service and then vibrates for x milliseconds *