Reputation: 7886
I want to add support for Arabic (or other languages which are currently unsupported) to the applications supplied by android platform (e.g. Browser) without the need of having root-access.
To add Arabic support (at least displaying only) in a normal application (using developer SDK), I will need to:
a aaa
, I will need to change a aaa
into a bcd
because letter a
at the beginning, middle, and end of a word need to be changed to b
,c
and d
respectively) But now I want to compile android's Browser (and other apps). I am planning to get the source codes for these applications and their dependencies and bundle them as stand-alone applications which do not require root-access, and thus do not void the warranty. Other solutions which void the warranty can be obtained here.
My Questions:
Upvotes: 0
Views: 668
Reputation: 9966
To add different localizations and formats you can use the resource files included with the application:
Resources and Internationalization
Upvotes: 0
Reputation: 1007544
Is the application's (e.g. Browser's) source code + 'developer SDK' enough to accomplish this?
No. The built-in applications can only be built as part of the firmware, as most were written before the SDK existed.
Do I need to get the source code + the development environment for the android platform?
Yes.
Upvotes: 1