Follow sample code package-name convention for InlineFillService. am: e48202f01c

Original change: https://googleplex-android-review.googlesource.com/c/platform/development/+/11716800

Change-Id: I0e402c45559412ff9ea4bbc3a06ae56aa9b50143
This commit is contained in:
Joanne Chung
2020-06-05 01:16:00 +00:00
committed by Automerger Merge Worker
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;