Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b90d4e27 authored by Mark Harman's avatar Mark Harman
Browse files

Call DeviceScanner directly - so we no longer need to export the activity.

parent 398a222d
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -48,6 +48,11 @@
<p>&lt; <small><a href="index.html">Main Page.</a></small></p>

<pre>
Version 1.48.2 (Work in progress)

UPDATED Selecting remote device type for Bluetooth remote control no longer calls DeviceScanner
        activity directly; DeviceScanner activity no longer exported.

Version 1.48.1 (2020/05/02)

FIXED   Crash on devices with Camera2 API where camera reports no picture, video or preview
+1 −4
Original line number Diff line number Diff line
@@ -72,11 +72,8 @@
        <activity
            android:name="net.sourceforge.opencamera.remotecontrol.DeviceScanner"
            android:label="@string/scan_ble"
            android:exported="false"
        >
            <intent-filter>
                <action android:name="net.sourceforge.opencamera.Remotecontrol.DeviceScanner"/>
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

        <!-- should not change the android:name, including moving to a subpackage - see http://android-developers.blogspot.co.uk/2011/06/things-that-cannot-change.html -->
+4 −1
Original line number Diff line number Diff line
@@ -207,7 +207,10 @@
                    android:dependency="preference_enable_remote"
                    >

                    <intent android:action="net.sourceforge.opencamera.Remotecontrol.DeviceScanner"/>
                    <intent
                        android:targetPackage="net.sourceforge.opencamera"
                        android:targetClass="net.sourceforge.opencamera.remotecontrol.DeviceScanner"
                        />

                </PreferenceScreen>