Follow sample code package-name convention for InlineFillService.

Bug: 155135358
Test: Manual. Install the application and dumpsys to check package
name.

Change-Id: Ifc338e40e6a2d37b775f6a60664231c2ce248eff
This commit is contained in:
Joanne Chung
2020-06-03 17:29:52 +08:00
parent 0500ea20fa
commit e48202f01c
9 changed files with 35 additions and 11 deletions

View File

@@ -1,6 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="foo.bar.inline" >
<application>
package="com.example.android.inlinefillservice" >
<application
android:label="@string/app_name">
<service
android:name=".InlineFillService"
android:label="Inline Fill Service"

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 2020, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
<resources>
<string name="app_name">Inline Fill Service</string>
</resources>

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package foo.bar.inline;
package com.example.android.inlinefillservice;
import android.app.Activity;
import android.app.AlertDialog;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package foo.bar.inline;
package com.example.android.inlinefillservice;
import static android.view.autofill.AutofillManager.EXTRA_AUTHENTICATION_RESULT;

View File

@@ -14,9 +14,9 @@
* limitations under the License.
*/
package foo.bar.inline;
package com.example.android.inlinefillservice;
import static foo.bar.inline.InlineFillService.TAG;
import static com.example.android.inlinefillservice.InlineFillService.TAG;
import android.app.assist.AssistStructure;
import android.content.Context;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package foo.bar.inline;
package com.example.android.inlinefillservice;
import android.content.Context;
import android.content.IntentSender;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package foo.bar.inline;
package com.example.android.inlinefillservice;
import android.app.PendingIntent;
import android.app.slice.Slice;

View File

@@ -14,9 +14,9 @@
* limitations under the License.
*/
package foo.bar.inline;
package com.example.android.inlinefillservice;
import static foo.bar.inline.InlineFillService.TAG;
import static com.example.android.inlinefillservice.InlineFillService.TAG;
import android.content.Context;
import android.content.IntentSender;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package foo.bar.inline;
package com.example.android.inlinefillservice;
import android.app.Activity;
import android.os.Bundle;