3 * * This file is part of the LibreOffice project.
5 * * This Source Code Form is subject to the terms of the Mozilla Public
6 * * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * * file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 package org
.libreoffice
;
13 import android
.content
.Context
;
14 import android
.os
.Handler
;
15 import androidx
.multidex
.MultiDexApplication
;
17 public class LibreOfficeApplication
extends MultiDexApplication
{
19 private static Handler mainHandler
;
21 public LibreOfficeApplication() {
22 mainHandler
= new Handler();
25 public static Handler
getMainHandler() {
30 protected void attachBaseContext(Context base
) {
31 super.attachBaseContext(LocaleHelper
.onAttach(base
));