diff options
-rw-r--r-- | android/source/AndroidManifest.xml | 6 | ||||
-rw-r--r-- | android/source/build.gradle | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/android/source/AndroidManifest.xml b/android/source/AndroidManifest.xml index 43f790fca985..409a56cb84ef 100644 --- a/android/source/AndroidManifest.xml +++ b/android/source/AndroidManifest.xml @@ -27,7 +27,8 @@ android:name=".LibreOfficeMainActivity" android:label="@string/app_name" android:configChanges="orientation|keyboard|keyboardHidden|screenLayout|uiMode|screenSize|smallestScreenSize" - android:windowSoftInputMode="adjustResize" > + android:windowSoftInputMode="adjustResize" + android:exported="true"> <intent-filter> <action android:name="android.intent.action.VIEW" /> @@ -101,7 +102,8 @@ <!-- Document Browser Activity --> <activity android:name="org.libreoffice.ui.LibreOfficeUIActivity" - android:label="@string/app_name" > + android:label="@string/app_name" + android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> diff --git a/android/source/build.gradle b/android/source/build.gradle index 7dc93e778a7c..6b7391d5e389 100644 --- a/android/source/build.gradle +++ b/android/source/build.gradle @@ -32,7 +32,7 @@ dependencies { } android { - compileSdkVersion 28 + compileSdkVersion 31 compileOptions { // silence some java-language features hints sourceCompatibility 6 @@ -53,7 +53,7 @@ android { } defaultConfig { minSdkVersion 16 - targetSdkVersion 28 + targetSdkVersion 31 vectorDrawables.useSupportLibrary = true } buildTypes { |