Commit graph

8870 commits

Author SHA1 Message Date
Alexey Pelykh
75cb395fba ndk-build 2013-08-04 15:05:02 +02:00
Victor Shcherb
c7f352da98 Fix exceptions 2013-08-04 13:51:14 +02:00
Victor Shcherb
f89cd246f0 Fix exceptions 2013-08-04 13:51:14 +02:00
Alexey Pelykh
88665c4613 Remains 2013-08-04 12:11:34 +02:00
vshcherb
5546e87b1f Delete old-ndk-build.sh 2013-08-04 12:09:13 +02:00
vshcherb
8f5a30dbc7 Create old-ndk-build.sh 2013-08-04 12:06:36 +02:00
Alexey Pelykh
7194b3a107 Control number of CPUs used for building 2013-08-04 11:07:52 +03:00
Alexey Pelykh
dff0477b85 Remove uitls 2013-08-04 11:01:19 +03:00
Alexey Pelykh
22f7f32b2d Be verbose 2013-08-04 10:58:16 +03:00
Alexey Pelykh
2ec07cf2f2 Merge branch 'master' of ssh://github.com/osmandapp/Osmand 2013-08-04 10:31:09 +03:00
Alexey Pelykh
7d05ce9a65 Fix order 2013-08-04 10:28:21 +03:00
ezjerry liao
b76b58e51c Translated using Weblate. 2013-08-04 09:05:03 +02:00
Alexey Pelykh
2a5f6372e0 Modify android makefiles 2013-08-04 09:42:34 +03:00
Alexey Pelykh
9502a7243c Generate SWIG wrapper just before build 2013-08-04 07:57:38 +03:00
Alexey Pelykh
ea0cf83654 ndk-build 2013-08-04 07:50:12 +03:00
Alexey Pelykh
ee4143d538 ndk-build 2013-08-04 07:48:27 +03:00
Victor Shcherb
dbcd77a557 Replace debuggable 2013-08-04 01:33:56 +02:00
Victor Shcherb
acb8004633 Add debug info 2013-08-04 01:18:21 +02:00
Victor Shcherb
12beb1ac14 Fix gpx casing 2013-08-04 00:34:38 +02:00
Victor Shcherb
87582724bc Fix issue with poi upload 2013-08-04 00:03:54 +02:00
Victor Shcherb
5feaaa8485 Trim favorite name 2013-08-03 23:52:17 +02:00
Victor Shcherb
4b5cf87d34 Fix small issue 2013-08-03 23:44:51 +02:00
Victor Shcherb
ac76952aa8 Fix voice issues 2013-08-03 20:57:43 +02:00
Victor Shcherb
85bda85884 Speak destination point 2013-08-03 20:19:55 +02:00
Victor Shcherb
ae8f839047 Replace - with space 2013-08-03 20:11:00 +02:00
Victor Shcherb
0598389eb5 Do not close Define view dialog 2013-08-03 20:03:46 +02:00
Victor Shcherb
69183b57df Add # symbol to enter lat/lon coordinates 2013-08-03 18:49:52 +02:00
Nelson A. de Oliveira
c479a91a07 Fix possible wrong AND in comparison 2013-08-03 10:49:00 -03:00
Nelson A. de Oliveira
17dce1efd8 Make some inner classes static
An inner class may be static if it doesn't reference its enclosing class
instance. A static inner class uses slightly less memory.
2013-08-03 10:48:26 -03:00
Nelson A. de Oliveira
c9dd6c0697 Make some fields static
A field may be static if it is declared final, and is initialized with a
constant
2013-08-03 10:48:18 -03:00
Nelson A. de Oliveira
8d3c8b6e9e Fix long literals ending with l
These literals may be confusing, as lowercase 'l' looks very similar to
'1'
2013-08-03 10:48:11 -03:00
Nelson A. de Oliveira
dad7d53f43 Remove unnecessary boxing/unboxing 2013-08-03 10:47:53 -03:00
Nelson A. de Oliveira
45b43e4311 Remove unnecessary returns
return is unnecessary as the last statement in a 'void' method
2013-08-03 10:47:34 -03:00
Nelson A. de Oliveira
f5be65b96e Simplify boolean expressions 2013-08-03 10:47:22 -03:00
Nelson A. de Oliveira
eb1a8d2f46 Fix duplicated branch 2013-08-03 10:46:49 -03:00
Nelson A. de Oliveira
0fe03b0f21 Remove unnecessary calls to String.valueOf() 2013-08-03 10:45:03 -03:00
Nelson A. de Oliveira
650b6b2362 Replace concat() call with +
Such calls can be replaced with the '+' operator for increased code
clarity and possible increased performance if the method was invoked on
a constant with a constant argument.
2013-08-03 10:44:54 -03:00
Nelson A. de Oliveira
dd615c9086 Use wrap_content in ScrollView
ScrollView children must set their layout_width or layout_height
attributes to wrap_content rather than fill_parent or match_parent in
the scrolling dimension.

This LinearLayout should use android:layout_height="wrap_content"
2013-08-03 10:43:04 -03:00
Nelson A. de Oliveira
bcab94e54f Fix inefficient layout weight
When only a single widget in a LinearLayout defines a weight, it is more
efficient to assign a width/height of 0dp to it since it will absorb all
the remaining space anyway. With a declared width/height of 0dp it does
not have to measure its own size first.
2013-08-03 10:42:47 -03:00
Nelson A. de Oliveira
a6f9976973 Fix buttons order
Layout uses the wrong button order for API >= 14:
Cancel button should be on the left (was "Save | Cancel", should be
"Cancel | Save")
2013-08-03 10:42:38 -03:00
Nelson A. de Oliveira
4c90f4aef3 Replace StringBuffer.toString() in concatenation
In addition to being confusing, this code performs String allocation and
copying, which is unnecessary as of JDK1.4
2013-08-03 10:42:31 -03:00
Nelson A. de Oliveira
20f18fd5a6 Fix single character string argument
These String literals may be replaced by equivalent character literals,
gaining some performance enhancement.
2013-08-03 10:42:15 -03:00
Nelson A. de Oliveira
db7346ea53 Fix redundant toString() on a String object 2013-08-03 10:42:08 -03:00
Nelson A. de Oliveira
7901e95fac Fix manual array copy 2013-08-03 10:40:59 -03:00
Roberto GEB
b84df845a2 Translated using Weblate. 2013-08-03 12:05:05 +02:00
sonora
730c11179e resort simulation dialogue a bit better 2013-08-03 09:08:41 +02:00
ezjerry liao
ca60148431 Translated using Weblate. 2013-08-03 00:05:04 +02:00
sonora
99562820fc put amenity=emergency_phone to end as is outdated 2013-08-02 21:42:22 +02:00
sonora
3c1c230dcc pre-install major tts voices 2013-08-02 15:08:50 +02:00
sonora
2a89630ebf add reference to language identifiers in en and de strings 2013-08-02 14:54:11 +02:00