aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorpacien2020-01-20 23:35:07 +0100
committerpacien2020-01-20 23:36:38 +0100
commit4476180248e569e08ac806b118b85e522fb01978 (patch)
tree5a3e13345d71b93ff5c3175652a64e1952907b56 /app
parent1292702c5404e519b3733f23ec98cbad925ebcb5 (diff)
downloadtincapp-4476180248e569e08ac806b118b85e522fb01978.tar.gz
add missing legacy logging library on Android 10
GitHub: closes https://github.com/pacien/tincapp/issues/94
Diffstat (limited to 'app')
-rw-r--r--app/src/main/AndroidManifest.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 073ef4e..29708b6 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -2,7 +2,7 @@
2 2
3<!-- 3<!--
4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon 4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2017-2019 Pacien TRAN-GIRARD 5 * Copyright (C) 2017-2020 Pacien TRAN-GIRARD
6 * 6 *
7 * This program is free software: you can redistribute it and/or modify 7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
@@ -36,6 +36,10 @@
36 android:theme="@style/AppTheme" 36 android:theme="@style/AppTheme"
37 tools:ignore="GoogleAppIndexingWarning"> 37 tools:ignore="GoogleAppIndexingWarning">
38 38
39 <uses-library
40 android:name="org.apache.http.legacy"
41 android:required="false"/>
42
39 <activity 43 <activity
40 android:name=".activities.start.StartActivity" 44 android:name=".activities.start.StartActivity"
41 android:configChanges="orientation|screenSize" 45 android:configChanges="orientation|screenSize"