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

Commit cc04159b authored by Steve Kondik's avatar Steve Kondik
Browse files

Merge tag 'android-5.1.0_r3' of...

Merge tag 'android-5.1.0_r3' of https://android.googlesource.com/platform/packages/services/Telecomm into HEAD

Android 5.1.0 release 3

Conflicts:
	Android.mk
	AndroidManifest.xml
	res/values/colors.xml
	src/com/android/server/telecom/BluetoothPhoneService.java
	src/com/android/server/telecom/Call.java
	src/com/android/server/telecom/CallActivity.java
	src/com/android/server/telecom/CallAudioManager.java
	src/com/android/server/telecom/CallLogManager.java
	src/com/android/server/telecom/CallsManager.java
	src/com/android/server/telecom/CallsManagerListenerBase.java
	src/com/android/server/telecom/ConnectionServiceWrapper.java
	src/com/android/server/telecom/InCallController.java
	src/com/android/server/telecom/Log.java
	src/com/android/server/telecom/PhoneAccountRegistrar.java
	src/com/android/server/telecom/RespondViaSmsManager.java
	src/com/android/server/telecom/ServiceBinder.java
	src/com/android/server/telecom/TelecomGlobals.java
	src/com/android/server/telecom/TelecomService.java
	src/com/android/server/telecom/Timeouts.java
	tests/AndroidManifest.xml

Change-Id: Ie52bec05b1207c104300e044c13c466ae875bce2
parents 3508a4e5 787ab2d6
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -3,11 +3,7 @@ LOCAL_PATH:= $(call my-dir)
# Build the Telecom service.
include $(CLEAR_VARS)

LOCAL_JAVA_LIBRARIES := \
        telephony-common

LOCAL_STATIC_JAVA_LIBRARIES := \
        guava \
LOCAL_JAVA_LIBRARIES := telephony-common

LOCAL_SRC_FILES := $(call all-java-files-under, src)

+12 −3
Original line number Diff line number Diff line
@@ -53,11 +53,11 @@
         can check for incompatible APIs. -->
    <uses-sdk android:minSdkVersion="19" />

    <application android:persistent="true"
            android:label="@string/telecommAppLabel"
    <application android:label="@string/telecommAppLabel"
            android:icon="@mipmap/ic_launcher_phone"
            android:allowBackup="false"
            android:supportsRtl="true">
            android:supportsRtl="true"
            android:process="system">

        <!-- CALL vs CALL_PRIVILEGED vs CALL_EMERGENCY
             We have three different intents through which a call can be initiated each with its
@@ -200,6 +200,7 @@
        <activity android:name=".RespondViaSmsSettings$Settings"
                  android:label="@string/respond_via_sms_setting_title"
                  android:configChanges="orientation|screenSize|keyboardHidden"
                  android:theme="@style/Theme.Telecom.DialerSettings"
                  android:process=":ui">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
@@ -239,5 +240,13 @@
            </intent-filter>
        </service>

        <service android:name=".TelecomService"
                android:singleUser="true"
                android:process="system">
            <intent-filter>
                <android android:name="android.telecom.ITelecomService" />
            </intent-filter>
        </service>

    </application>
</manifest>
+287 B
Loading image diff...
+219 B
Loading image diff...
+240 B
Loading image diff...
Loading