summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@theqtcompany.com>2014-11-21 10:15:58 +0100
committerJani Heikkinen <jani.heikkinen@theqtcompany.com>2014-11-21 16:47:45 +0100
commitd0ef89caaba9ee8c57428447f04a17233b8888f5 (patch)
treea7196c019ef57e65d25303b74d8ec79a9c56c0a6 /src
parentbb07737614d3fdf867e8e5da835554ae731ba04f (diff)
Android: Make old manifests work on Android 5
On newer Androids, exceptions have started happening when using old manifests that refer to splash.xml because the layout is missing some required attributes. We add these to avoid crashing with these apps. Change-Id: Iefd4718e811df844e53890ee5bc772871d0a9803 Task-number: QTBUG-42807 Reviewed-by: Christian Stromme <christian.stromme@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/android/java/res/layout/splash.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/android/java/res/layout/splash.xml b/src/android/java/res/layout/splash.xml
index 6875521a12..476d91a844 100644
--- a/src/android/java/res/layout/splash.xml
+++ b/src/android/java/res/layout/splash.xml
@@ -1,2 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" />
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent" />