@@ -22,19 +22,19 @@ def check_ndk_version(ndk_dir):
22
22
specified via attribute `MIN_NDK_VERSION`.
23
23
24
24
.. versionchanged:: 2019.06.06.1.dev0
25
- Added the ability to get android's ndk `letter version` and also
25
+ Added the ability to get android's NDK `letter version` and also
26
26
rewrote to raise an exception in case that an NDK version lower than
27
27
the minimum supported is detected.
28
28
"""
29
29
version = read_ndk_version (ndk_dir )
30
30
31
31
if version is None :
32
32
warning (
33
- 'Unable to read the ndk version, assuming that you are using an'
34
- ' NDK greater than {min_supported} (the minimum ndk required to'
33
+ 'Unable to read the NDK version, assuming that you are using an'
34
+ ' NDK greater than {min_supported} (the minimum NDK required to'
35
35
' use p4a successfully).\n '
36
36
'Note: If you got build errors, consider to download the'
37
- ' recommended ndk version which is {rec_version} and try'
37
+ ' recommended NDK version which is {rec_version} and try'
38
38
' it again (after removing all the files generated with this'
39
39
' build). To download the android NDK visit the following page: '
40
40
'{ndk_url}' .format (
@@ -46,7 +46,7 @@ def check_ndk_version(ndk_dir):
46
46
return
47
47
48
48
# create a dictionary which will describe the relationship of the android's
49
- # ndk minor version with the `human readable` letter version, egs:
49
+ # NDK minor version with the `human readable` letter version, egs:
50
50
# Pkg.Revision = 17.1.4828580 => ndk-17b
51
51
# Pkg.Revision = 17.2.4988734 => ndk-17c
52
52
# Pkg.Revision = 19.0.5232133 => ndk-19 (No letter)
@@ -70,7 +70,7 @@ def check_ndk_version(ndk_dir):
70
70
user_version = string_version , min_supported = MIN_NDK_VERSION
71
71
),
72
72
instructions = (
73
- 'Please, go to the android ndk page ({ndk_url}) and download a'
73
+ 'Please, go to the android NDK page ({ndk_url}) and download a'
74
74
' supported version.\n *** The currently recommended NDK'
75
75
' version is {rec_version} ***' .format (
76
76
ndk_url = NDK_DOWNLOAD_URL ,
0 commit comments