diff options
-rw-r--r-- | sal/rtl/source/bootstrap.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sal/rtl/source/bootstrap.cxx b/sal/rtl/source/bootstrap.cxx index 1f293b5d9f24..66571c627755 100644 --- a/sal/rtl/source/bootstrap.cxx +++ b/sal/rtl/source/bootstrap.cxx @@ -521,6 +521,14 @@ bool Bootstrap_Impl::getValue( return true; } #endif +#ifdef IOS + if (key == "APP_DATA_DIR") { + const char *app_data_dir = [[[NSBundle mainBundle] bundlePath] UTF8String]; + rtl_uString_assign( + value, rtl::OUString(app_data_dir, strlen(app_data_dir), RTL_TEXTENCODING_UTF8).pData); + return true; + } +#endif if (key == "ORIGIN") { rtl_uString_assign( value, |