Android build tools version set to 22.0.0.

This commit is contained in:
Aleksander Nowakowski
2015-03-16 16:38:23 +01:00
parent 28616ece1d
commit 725f8f8ea8
3 changed files with 8 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "21.1.2"
buildToolsVersion '22.0.0'
defaultConfig {
applicationId "no.nordicsemi.android.nrftoolbox"
minSdkVersion 18

View File

@@ -638,14 +638,14 @@ public class DfuActivity extends ActionBarActivity implements LoaderCallbacks<Cu
index = 0;
break;
case DfuService.TYPE_SOFT_DEVICE:
index = 1;
break;
index = 1;
break;
case DfuService.TYPE_BOOTLOADER:
index = 2;
break;
index = 2;
break;
case DfuService.TYPE_APPLICATION:
index = 3;
break;
index = 3;
break;
}
// Show a dialog with file types
new AlertDialog.Builder(this).setTitle(R.string.dfu_file_type_title)

View File

@@ -93,8 +93,7 @@
<string name="dfu_file_init_message">Do you want to select the Init packet file?\n
The Init packet file (*.dat) should contain the device type and revision, application version, list of supported Soft Devices and the firmware CRC
in binary format or, with old versions of the DFU bootloader, only the CRC (CRC-CCITT-16).
With the new version of the bootloader the extended Init packet is <b>required</b>.
</string>
With the new version of the bootloader the extended Init packet is <b>required</b>.</string>
<string name="dfu_unknown_name">unnamed device</string>
<string name="dfu_uploading_percentage_label">0%</string>