diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-06-29 13:51:06 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-08-11 11:14:22 -0700 |
commit | d27777790ee956c532be1dcefb59332e424bedd2 (patch) | |
tree | efb329bad5d765fcbbbc6a4aaedded74f1686ca6 /android-mobile/AndroidManifest.xml | |
parent | b9fcc9543dac4723c84c03a3d4e9bdbd176483b1 (diff) | |
download | subsurface-d27777790ee956c532be1dcefb59332e424bedd2.tar.gz |
Android: add Java class to receive Intents
We want to be able to respond to a USB device being plugged in.
This simply logs the information we get from the device. Sadly the
really useful getProductName and getManufacturerName require API level
21 (so Android 5.0 or newer) and we still have a couple hundred users on
4.1-4.4.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'android-mobile/AndroidManifest.xml')
-rw-r--r-- | android-mobile/AndroidManifest.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android-mobile/AndroidManifest.xml b/android-mobile/AndroidManifest.xml index 0a591eb99..de4ff68ab 100644 --- a/android-mobile/AndroidManifest.xml +++ b/android-mobile/AndroidManifest.xml @@ -11,7 +11,7 @@ android:label="@string/app_name" android:icon="@drawable/subsurface_mobile_icon" > <activity - android:name="org.qtproject.qt5.android.bindings.QtActivity" + android:name="org.subsurfacedivelog.mobile.SubsurfaceMobileActivity" android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation" android:label="@string/app_name" android:theme="@style/AppTheme" |