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

Commit e7a103b9 authored by Joseph Pirozzo's avatar Joseph Pirozzo
Browse files

PBAP Client Account Authenticator

Update PBAP client account authenticator have the correct package
namespace and the Bluetooth icon.

Bug: 27724937
Test: With the PBAP client profile enabled visit Settings->Users &
accounts->Add account observe icon and name for bluetooth pbap account.

Change-Id: If197ac22733be5a54f4f76b399f37949b7cc4915
(cherry picked from commit 741218f261f751c55564a60b581d9b7151fc235e)
parent aba0529f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -369,7 +369,7 @@
        <!-- Authenticator for PBAP account. -->
        <service
            android:process="@string/process"
            android:name=".AuthenticationService"
            android:name=".pbapclient.AuthenticationService"
            android:exported="true"
            android:enabled="@bool/profile_supported_pbapclient">
            <intent-filter>
+4 −1
Original line number Diff line number Diff line
@@ -15,4 +15,7 @@
-->
<account-authenticator
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:accountType="@string/pbap_account_type" />
        android:icon="@mipmap/bt_share"
        android:smallIcon="@mipmap/bt_share"
        android:accountType="@string/pbap_account_type"
        android:label="@string/pbap_account_type" />
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.google.android.car.pbapsink;
package com.android.bluetooth.pbapclient;

import android.app.Service;
import android.content.Intent;
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.google.android.car.pbapsink;
package com.android.bluetooth.pbapclient;

import android.accounts.AbstractAccountAuthenticator;
import android.accounts.Account;