From 9502fb3f0e1036067cf3a417eca82d39254b9b89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20N=C3=BCsse?= Date: Tue, 27 Apr 2021 19:51:22 +0200 Subject: [PATCH] Add Query-Requirement for Android 11 and later Further information on the issue and source: https://stackoverflow.com/questions/62345805/namenotfoundexception-when-calling-getpackageinfo-on-android-11 --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 583fe7f9..f4b2f10f 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,15 @@ compileOptions { We use some features from Java 8, so your project needs also to be compiled with (at least) this version. +For Android 11 and later you may need to add queries to your app's manifest file. It will not find the nextcloud-app otherwise. + +``` + + + + +``` + ### 2) To choose an account, include the following code in your login dialog: From an Activity