Fix android SDK version and the yes/no screen title
Change-Id: I84a067adcc83291de5131c88483f400d38bea15b
This commit is contained in:
parent
01cbb795e9
commit
cb205c8b56
3 changed files with 3 additions and 2 deletions
|
@ -32,7 +32,7 @@ ANDROID_PLATFORM_VERSION=19
|
|||
ANDROID_PLATFORM=$(ANDROID_SDK_PATH)/platforms/android-$(ANDROID_PLATFORM_VERSION)
|
||||
|
||||
# android tools
|
||||
BUILD_TOOLS_VERSION=19.0.3
|
||||
BUILD_TOOLS_VERSION=19.1.0
|
||||
AAPT=$(ANDROID_SDK_PATH)/build-tools/$(BUILD_TOOLS_VERSION)/aapt
|
||||
DX=$(ANDROID_SDK_PATH)/build-tools/$(BUILD_TOOLS_VERSION)/dx
|
||||
ZIPALIGN=$(ANDROID_SDK_PATH)/tools/zipalign
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
<string name="OK">OK</string>
|
||||
<string name="Cancel">Cancel</string>
|
||||
<string name="KbdInputTitle">Rockbox Keyboard Input</string>
|
||||
<string name="YesNoTitle">Rockbox</string>
|
||||
<string name="Yes">Yes</string>
|
||||
<string name="No">No</string>
|
||||
<string name="error_extraction">Error occured during extraction!</string>
|
||||
|
|
|
@ -59,7 +59,7 @@ public class RockboxYesno
|
|||
{
|
||||
Listener l = new Listener();
|
||||
new AlertDialog.Builder(c)
|
||||
.setTitle(R.string.KbdInputTitle)
|
||||
.setTitle(R.string.YesNoTitle)
|
||||
.setIcon(R.drawable.icon)
|
||||
.setMessage(text)
|
||||
.setPositiveButton(yes, l)
|
||||
|
|
Loading…
Reference in a new issue