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:
@@ -1,6 +1,7 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="foo.bar.inline" >
|
package="com.example.android.inlinefillservice" >
|
||||||
<application>
|
<application
|
||||||
|
android:label="@string/app_name">
|
||||||
<service
|
<service
|
||||||
android:name=".InlineFillService"
|
android:name=".InlineFillService"
|
||||||
android:label="Inline Fill Service"
|
android:label="Inline Fill Service"
|
||||||
|
|||||||
23
samples/InlineFillService/res/values/strings.xml
Normal file
23
samples/InlineFillService/res/values/strings.xml
Normal 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>
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package foo.bar.inline;
|
package com.example.android.inlinefillservice;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package foo.bar.inline;
|
package com.example.android.inlinefillservice;
|
||||||
|
|
||||||
import static android.view.autofill.AutofillManager.EXTRA_AUTHENTICATION_RESULT;
|
import static android.view.autofill.AutofillManager.EXTRA_AUTHENTICATION_RESULT;
|
||||||
|
|
||||||
@@ -14,9 +14,9 @@
|
|||||||
* limitations under the License.
|
* 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.app.assist.AssistStructure;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
package foo.bar.inline;
|
package com.example.android.inlinefillservice;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.IntentSender;
|
import android.content.IntentSender;
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package foo.bar.inline;
|
package com.example.android.inlinefillservice;
|
||||||
|
|
||||||
import android.app.PendingIntent;
|
import android.app.PendingIntent;
|
||||||
import android.app.slice.Slice;
|
import android.app.slice.Slice;
|
||||||
@@ -14,9 +14,9 @@
|
|||||||
* limitations under the License.
|
* 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.Context;
|
||||||
import android.content.IntentSender;
|
import android.content.IntentSender;
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package foo.bar.inline;
|
package com.example.android.inlinefillservice;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
Reference in New Issue
Block a user