Make the string Tools functions available in android.

This commit is contained in:
Matthieu Gautier
2019-01-09 18:29:20 +01:00
parent 92c9a47a0d
commit be498c3b16
2 changed files with 0 additions and 8 deletions

View File

@ -57,8 +57,6 @@ std::string kiwix::removeAccents(const std::string& text)
return unaccentedText;
}
#ifndef __ANDROID__
/* Prepare integer for display */
std::string kiwix::beautifyInteger(uint64_t number)
{
@ -138,8 +136,6 @@ std::string kiwix::encodeDiples(const std::string& str)
return result;
}
#endif
/* urlEncode() based on javascript encodeURI() &
encodeURIComponent(). Mostly code from rstudio/httpuv (GPLv3) */