Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

```
<queries>
<package android:name="com.nextcloud.client" />
<package android:name="com.nextcloud.android.beta" />
</queries>
```

### 2) To choose an account, include the following code in your login dialog:

From an Activity
Expand Down