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

Commit fd988098 authored by Chet Haase's avatar Chet Haase
Browse files

Clarify example for Deep Share

Changed name of service to avoid using the actual class name
ChooserTargetService as the example service's name.

Issue #21418354 Clarify doc example for ChooserTargetService

Change-Id: I59bf67299fe7a8307504baf5e999c14f84a1e50d
parent 252893df
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ import java.util.List;
 * the {@link android.Manifest.permission#BIND_CHOOSER_TARGET_SERVICE} permission
 * and include an intent filter with the {@link #SERVICE_INTERFACE} action. For example:</p>
 * <pre>
 *     &lt;service android:name=".ChooserTargetService"
 *     &lt;service android:name=".MyChooserTargetService"
 *             android:label="&#64;string/service_name"
 *             android:permission="android.permission.BIND_CHOOSER_TARGET_SERVICE">
 *         &lt;intent-filter>
@@ -69,7 +69,7 @@ import java.util.List;
 *             &lt;action android:name="android.intent.action.SEND" />
 *         &lt;/intent-filter>
 *         &lt;meta-data android:name="android.service.chooser.chooser_target_service"
 *                 android:value=".ChooserTargetService" />
 *                 android:value=".MyChooserTargetService" />
 *     &lt;/activity>
 * </pre>
 */