aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorAngelo Mantellini <manangel@cisco.com>2019-06-12 18:02:19 +0200
committerAngelo Mantellini <manangel@cisco.com>2019-06-18 14:50:29 +0200
commit6fe18f6a466dbae611bbe1e4fa33b352cc4ef6df (patch)
tree4521d14f28894256891c878b08b5410e02d43125 /android
parent2a876fc0d7986dc1ecb169bdc41972fe0f33d0dd (diff)
Correct android issues for libdash and viper
Change-Id: Ia5b95bda6336b6544c881c416f852069662f5e3f Signed-off-by: Angelo Mantellini <manangel@cisco.com>
Diffstat (limited to 'android')
-rw-r--r--android/AndroidManifest.xml6
-rw-r--r--android/gradle.properties4
-rw-r--r--[-rwxr-xr-x]android/res/drawable-hdpi/icon.pngbin2449 -> 127864 bytes
-rw-r--r--[-rwxr-xr-x]android/res/drawable-ldpi/icon.pngbin1285 -> 127864 bytes
-rw-r--r--[-rwxr-xr-x]android/res/drawable-mdpi/icon.pngbin1777 -> 114093 bytes
-rwxr-xr-xandroid/src/io/fd/viper/ViperActivity.java (renamed from android/src/org/player/viper/ViperActivity.java)2
6 files changed, 6 insertions, 6 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index aaac206d..f8e00c3a 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
-<manifest package="org.player.viper" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0" android:versionCode="7" android:installLocation="auto">
+<manifest package="io.fd.viper" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0" android:versionCode="9" android:installLocation="auto">
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="Viper" android:icon="@drawable/icon">
- <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="org.player.viper.ViperActivity" android:label="Viper" android:screenOrientation="unspecified" android:launchMode="singleTop">
+ <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="io.fd.viper.ViperActivity" android:label="Viper" android:screenOrientation="unspecified" android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
@@ -69,7 +69,7 @@
</application>
- <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="23"/>
+ <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="26"/>
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
diff --git a/android/gradle.properties b/android/gradle.properties
index 5582cc87..8527bcaf 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -3,6 +3,6 @@
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
-androidBuildToolsVersion=23.0.2
-androidCompileSdkVersion=23
+androidBuildToolsVersion=28.0.3
+androidCompileSdkVersion=28
buildDir=.build
diff --git a/android/res/drawable-hdpi/icon.png b/android/res/drawable-hdpi/icon.png
index ecd7fe96..d84d1df6 100755..100644
--- a/android/res/drawable-hdpi/icon.png
+++ b/android/res/drawable-hdpi/icon.png
Binary files differ
diff --git a/android/res/drawable-ldpi/icon.png b/android/res/drawable-ldpi/icon.png
index 8a4388e5..d84d1df6 100755..100644
--- a/android/res/drawable-ldpi/icon.png
+++ b/android/res/drawable-ldpi/icon.png
Binary files differ
diff --git a/android/res/drawable-mdpi/icon.png b/android/res/drawable-mdpi/icon.png
index a1519295..812c295f 100755..100644
--- a/android/res/drawable-mdpi/icon.png
+++ b/android/res/drawable-mdpi/icon.png
Binary files differ
diff --git a/android/src/org/player/viper/ViperActivity.java b/android/src/io/fd/viper/ViperActivity.java
index e046d125..0696d0d0 100755
--- a/android/src/org/player/viper/ViperActivity.java
+++ b/android/src/io/fd/viper/ViperActivity.java
@@ -13,7 +13,7 @@
* limitations under the License.
*/
-package org.player.viper;
+package io.fd.viper;
import org.qtproject.qt5.android.bindings.QtActivity;
import android.content.Context;
import android.content.Intent;