Ön plan hizmet türleri gereklidir

To help developers be more intentional with defining user-facing foreground services, Android 10 introduced the android:foregroundServiceType attribute within the <service> element.

If your app targets Android 14, it must specify appropriate foreground service types. As in previous versions of Android, multiple types can be combined. This list shows the foreground service types to choose from:

If a use case in your app isn't associated with any of these types, we strongly recommend that you migrate your logic to use WorkManager or user-initiated data transfer jobs.

The health, remoteMessaging, shortService, specialUse, and systemExempted types are new in Android 14.

The following code snippet provides an example of a foreground service type declaration in the manifest:

<manifest ...>
  <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
  <uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />
    <application ...>
      <service
          android:name=".MyMediaPlaybackService"
          android:foregroundServiceType="mediaPlayback"
          android:exported="false">
      </service>
    </application>
</manifest>

If an app that targets Android 14 doesn't define types for a given service in the manifest, then the system will raise MissingForegroundServiceTypeException upon calling startForeground() for that service.

Ön plan hizmet türlerini kullanmak için yeni izin bildirme

If apps that target Android 14 use a foreground service, they must declare a specific permission, based on the foreground service type, that Android 14 introduces. These permissions appear in the sections labeled "permission that you must declare in your manifest file" in the intended use cases and enforcement for each foreground service type section on this page.

All of the permissions are defined as normal permissions and are granted by default. Users cannot revoke these permissions.

Çalışma zamanında ön plan hizmet türünü dahil et

The best practice for applications starting foreground services is to use the ServiceCompat version of startForeground() (available in androidx-core 1.12 and higher) where you pass in a bitwise integer of foreground service types. You can choose to pass one or more type values.

Usually, you should declare only the types required for a particular use case. This makes it easier to meet the system's expectations for each foreground service type. In cases where a foreground service is started with multiple types, then the foreground service must adhere to the platform enforcement requirements of all types.

ServiceCompat.startForeground(0, notification, FOREGROUND_SERVICE_TYPE_LOCATION)

If the foreground service type is not specified in the call, the type defaults to the values defined in the manifest. If you didn't specify the service type in the manifest, the system throws MissingForegroundServiceTypeException.

If the foreground service needs new permissions after you launch it, you should call startForeground() again and add the new service types. For example, suppose a fitness app runs a running-tracker service that always needs location information, but might or might not need media permissions. You would need to declare both location and mediaPlayback in the manifest. If a user starts a run and just wants their location tracked, your app should call startForeground() and pass just the location service type. Then, if the user wants to start playing audio, call startForeground() again and pass location|mediaPlayback.

Sistem çalışma zamanı kontrolleri

Sistem, ön plan hizmeti türlerinin uygun şekilde kullanılıp kullanılmadığını kontrol eder ve uygulamanın uygun çalışma zamanı izinlerini istediğini veya gerekli API'leri kullandığını onaylar. Örneğin, sistem FOREGROUND_SERVICE_TYPE_LOCATION ön plan hizmet türünü kullanan uygulamaların ACCESS_COARSE_LOCATION veya ACCESS_FINE_LOCATION isteğinde bulunmasını bekler.

Bu, uygulamaların kullanıcıdan izin isterken ve ön plan hizmetlerini başlatırken çok spesifik bir işlem sırası izlemesi gerektiği anlamına gelir. İzinler, uygulama startForeground() yöntemini çağırmadan önce istenmeli ve verilmelidir. Ön plan hizmeti başlatıldıktan sonra uygun izinleri isteyen uygulamalar bu işlem sırasını değiştirmeli ve ön plan hizmetini başlatmadan önce izin istemelidir.

Platform yaptırımının ayrıntıları, bu sayfadaki her ön plan hizmet türü için amaçlanan kullanım alanları ve yaptırım bölümündeki "çalışma zamanı gereksinimleri" etiketli bölümlerde gösterilmektedir.

Her ön plan hizmet türü için amaçlanan kullanım alanları ve yaptırımlar

In order to use a given foreground service type, you must declare a particular permission in your manifest file, you must fulfill specific runtime requirements, and your app must fulfill one of the intended sets of use cases for that type. The following sections explain the permission that you must declare, the runtime prerequisites, and the intended use cases for each type.

Kamera

android:foregroundServiceType kapsamında manifestte bildirilecek ön plan hizmet türü
camera
Manifest dosyanızda beyan etme izni
FOREGROUND_SERVICE_CAMERA
startForeground() için sabit geçiş
FOREGROUND_SERVICE_TYPE_CAMERA
Çalışma zamanı ön koşulları

CAMERA çalışma zamanında istenen izni isteme ve alma

Not: CAMERA çalışma zamanı izni, kullanım sırasındaki kısıtlamalara tabidir. Bu nedenle, birkaç istisna dışında, uygulamanız arka plandayken camera ön plan hizmeti oluşturamazsınız. Daha fazla bilgi için Kullanım sırasında izin gerektiren ön plan hizmetlerinin başlatılmasıyla ilgili kısıtlamalar bölümüne bakın.

Açıklama

Çoklu görev gerçekleştirmeye izin veren görüntülü sohbet uygulamaları gibi arka planda kameraya erişmeye devam edin.

Bağlı cihaz

Manifestte bildirilecek ön plan hizmeti türü
android:foregroundServiceType
connectedDevice
Manifest dosyanızda beyan etme izni
FOREGROUND_SERVICE_CONNECTED_DEVICE
startForeground() için sabit geçiş
FOREGROUND_SERVICE_TYPE_CONNECTED_DEVICE
Çalışma zamanı ön koşulları

Aşağıdaki koşullardan en az biri doğru olmalıdır:

Açıklama

Bluetooth, NFC, IR, USB veya ağ bağlantısı gerektiren harici cihazlarla olan etkileşimler.

Alternatifler

Uygulamanızın harici bir cihaza sürekli olarak veri aktarımı yapması gerekiyorsa bunun yerine tamamlayıcı cihaz yöneticisini kullanmayı düşünebilirsiniz. Tamamlayıcı cihaz kapsama alanındayken uygulamanızın çalışmaya devam etmesine yardımcı olmak için tamamlayıcı cihaz varlığı API'sini kullanın.

Uygulamanızın Bluetooth cihazları taraması gerekiyorsa bunun yerine Bluetooth Tarama API'sini kullanmayı düşünün.

Veri senkronizasyonu

Manifestte bildirilecek ön plan hizmeti türü
android:foregroundServiceType
dataSync
Manifest dosyanızda beyan etme izni
FOREGROUND_SERVICE_DATA_SYNC
startForeground() için sabit geçiş
FOREGROUND_SERVICE_TYPE_DATA_SYNC
Çalışma zamanı ön koşulları
Hiçbiri
Açıklama

Aşağıdakiler gibi veri aktarımı işlemleri:

  • Veri yükleme veya indirme
  • Yedekleme ve geri yükleme işlemleri
  • İçe veya dışa aktarma işlemleri
  • Verileri getir
  • Yerel dosya işleme
  • Ağ üzerinden cihaz ile bulut arasında veri aktarma
Alternatifler

Ayrıntılı bilgi için Veri senkronizasyonu ön plan hizmetlerine alternatifler bölümüne bakın.

Sağlık

Foreground service type to declare in manifest under
android:foregroundServiceType
health
Permission to declare in your manifest
FOREGROUND_SERVICE_HEALTH
Constant to pass to startForeground()
FOREGROUND_SERVICE_TYPE_HEALTH
Runtime prerequisites

At least one of the following conditions must be true:

Note: The BODY_SENSORS runtime permission is subject to while-in-use restrictions. For this reason, you cannot create a health foreground service that uses body sensors while your app is in the background, with a few exceptions. For more information, see Restrictions on starting foreground services that need while-in-use permissions.

Description

Any long-running use cases to support apps in the fitness category such as exercise trackers.

Konum

Foreground service type to declare in manifest under
android:foregroundServiceType
location
Permission to declare in your manifest
FOREGROUND_SERVICE_LOCATION
Constant to pass to startForeground()
FOREGROUND_SERVICE_TYPE_LOCATION
Runtime prerequisites

The user must have enabled location services and the app must be granted at least one of the following runtime permissions:

Note: In order to check that the user has enabled location services as well as granted access to the runtime permissions, use PermissionChecker#checkSelfPermission()

Note: The location runtime permissions are subject to while-in-use restrictions. For this reason, you cannot create a location foreground service while your app is in the background, unless you've been granted the ACCESS_BACKGROUND_LOCATION runtime permission. For more information, see Restrictions on starting foreground services that need while-in-use permissions.

Description

Long-running use cases that require location access, such as navigation and location sharing.

Alternatives

If your app needs to be triggered when the user reaches specific locations, consider using the geofence API instead.

Medya

Manifestte bildirilecek ön plan hizmeti türü
android:foregroundServiceType
mediaPlayback
Manifest dosyanızda beyan etme izni
FOREGROUND_SERVICE_MEDIA_PLAYBACK
startForeground() için sabit geçiş
FOREGROUND_SERVICE_TYPE_MEDIA_PLAYBACK
Çalışma zamanı ön koşulları
Hiçbiri
Açıklama
Ses veya video oynatmaya arka planda devam edin. Android TV'de Dijital Video Kayıt (DVR) işlevini destekleyin.
Alternatifler
Pencere içinde pencere gösteriyorsanız Pencere İçinde Pencere modunu kullanın.

Medya projeksiyonu

Foreground service type to declare in manifest under
android:foregroundServiceType
mediaProjection
Permission to declare in your manifest
FOREGROUND_SERVICE_MEDIA_PROJECTION
Constant to pass to startForeground()
FOREGROUND_SERVICE_TYPE_MEDIA_PROJECTION
Runtime prerequisites

Call the createScreenCaptureIntent() method before starting the foreground service. Doing so shows a permission notification to the user; the user must grant the permission before you can create the service.

After you have created the foreground service, you can call MediaProjectionManager.getMediaProjection().

Description

Project content to non-primary display or external device using the MediaProjection APIs. This content doesn't have to be exclusively media content.

Alternatives

To stream media to another device, use the Google Cast SDK.

Mikrofon

Manifestte bildirilecek ön plan hizmeti türü
android:foregroundServiceType
microphone
Manifest dosyanızda beyan etme izni
FOREGROUND_SERVICE_MICROPHONE
startForeground() için sabit geçiş
FOREGROUND_SERVICE_TYPE_MICROPHONE
Çalışma zamanı ön koşulları

RECORD_AUDIO çalışma zamanı iznini isteyin ve alın.

Not: RECORD_AUDIO çalışma zamanı izni, kullanım sırasındaki kısıtlamalara tabidir. Bu nedenle, birkaç istisna dışında, uygulamanız arka plandayken microphone ön plan hizmeti oluşturamazsınız. Daha fazla bilgi için Kullanım sırasında izin gerektiren ön plan hizmetlerinin başlatılmasıyla ilgili kısıtlamalar bölümüne bakın.

Açıklama

Ses kaydediciler veya iletişim uygulamaları gibi arka planda mikrofon yakalamaya devam edin.

Sesli arama

Foreground service type to declare in manifest under
android:foregroundServiceType
phoneCall
Permission to declare in your manifest
FOREGROUND_SERVICE_PHONE_CALL
Constant to pass to startForeground()
FOREGROUND_SERVICE_TYPE_PHONE_CALL
Runtime prerequisites

At least one of these conditions must be true:

  • App is the default dialer app through the ROLE_DIALER role.
Description

Continue an ongoing call using the ConnectionService APIs.

Alternatives

If you need to make phone, video, or VoIP calls, consider using the android.telecom library.

Consider using CallScreeningService to screen calls.

Uzaktan mesajlaşma

Foreground service type to declare in manifest under
android:foregroundServiceType
remoteMessaging
Permission to declare in your manifest
FOREGROUND_SERVICE_REMOTE_MESSAGING
Constant to pass to startForeground()
FOREGROUND_SERVICE_TYPE_REMOTE_MESSAGING
Runtime prerequisites
None
Description
Transfer text messages from one device to another. Assists with continuity of a user's messaging tasks when they switch devices.

Kısa servis

Manifestte bildirilecek ön plan hizmeti türü
android:foregroundServiceType
shortService
Manifest dosyanızda beyan etme izni
Hiçbiri
startForeground() için sabit geçiş
FOREGROUND_SERVICE_TYPE_SHORT_SERVICE
Çalışma zamanı ön koşulları
Hiçbiri
Açıklama

Kesilemeyen veya ertelenemeyen kritik işleri hızla bitirin.

Bu türün bazı benzersiz özellikleri vardır:

  • Yalnızca kısa bir süre (yaklaşık 3 dakika) için çalıştırılabilir.
  • Yapışkan ön plan hizmetleri için destek sunulmaz.
  • Diğer ön plan hizmetleri başlatılamaz.
  • Türe özel izin gerektirmez ancak yine de FOREGROUND_SERVICE iznini gerektirir.
  • shortService öğesinin başka bir hizmet türüne geçmesi, yalnızca uygulamanın şu anda yeni bir ön plan hizmeti başlatmaya uygun olması durumunda mümkündür.
  • Bir ön plan hizmeti, türünü istediği zaman shortService olarak değiştirebilir. Bu noktada zaman aşımı süresi başlar.

ShortService için zaman aşımı Service.startForeground() hizmetinin çağrıldığı anda başlar. Uygulamanın, zaman aşımı gerçekleşmeden önce Service.stopSelf() veya Service.stopForeground() yöntemini çağırması beklenir. Aksi takdirde, yeni Service.onTimeout() çağrılır; bu da uygulamalara, hizmetlerini durdurmaları için kısa bir süre içinde stopSelf() veya stopForeground() numarasını arama fırsatı verir.

Service.onTimeout() çağrıldıktan kısa bir süre sonra uygulama önbelleğe alınmış duruma girer ve kullanıcı etkin bir şekilde uygulamayla etkileşimde bulunmadığı sürece artık ön planda kabul edilmez. Uygulama önbelleğe alındıktan ve hizmet durdurulmadan kısa bir süre sonra uygulama bir ANR alır. ANR mesajında FOREGROUND_SERVICE_TYPE_SHORT_SERVICE bahsediliyor. Bu nedenlerle, Service.onTimeout() geri çağırmanın uygulanması en iyi uygulama olarak kabul edilir.

Service.onTimeout() geri çağırma özelliği Android 13 ve önceki sürümlerde mevcut değildir. Aynı hizmet bu tür cihazlarda çalışıyorsa zaman aşımı olmaz ve ANR de yaşanmaz. Hizmetinizin işleme görevini tamamlar tamamlamaz (Service.onTimeout() geri çağırma işlemini henüz almamış olsa bile) durduğundan emin olun.

shortService zaman aşımına uyulmadığı takdirde, başka geçerli ön plan hizmetleri veya çalışan başka uygulama yaşam döngüsü süreçleri olsa bile uygulamanın ANR oluşturacağını unutmayın.

Bir uygulama kullanıcı tarafından görülebiliyorsa veya ön plan hizmetlerinin arka plandan başlatılmasına izin veren muafiyetlerden birini karşılıyorsa FOREGROUND_SERVICE_TYPE_SHORT_SERVICE parametresiyle Service.StartForeground() öğesinin tekrar çağrılması zaman aşımını 3 dakika daha uzatır. Uygulama kullanıcı tarafından görülmüyorsa ve muafiyetlerden birini karşılamıyorsa türden bağımsız olarak başka bir ön plan hizmeti başlatma girişimi ForegroundServiceStartNotAllowedException hatasına neden olur.

Bir kullanıcı uygulamanız için pil optimizasyonunu devre dışı bıraksa bile, shortService ön plan hizmetlerini devre dışı bırakan uygulama, yine de kısa süreli bir çözüm olarak kullanılır.

shortService türünü ve başka bir ön plan hizmet türünü içeren bir ön plan hizmeti başlatırsanız sistem, shortService türü beyanını yoksayar. Ancak hizmetin yine de bildirilen diğer türlerin ön koşullarına uyması gerekir. Daha fazla bilgi için Ön plan hizmetleri belgelerine bakın.

Özel kullanım

Manifest dosyasında tanımlanacak ön plan hizmet türü
android:foregroundServiceType
specialUse
Manifest'inizde beyan etme izni
FOREGROUND_SERVICE_SPECIAL_USE
startForeground() noktasına ulaşılmasına kalan süre
FOREGROUND_SERVICE_TYPE_SPECIAL_USE
Çalışma zamanı ön koşulları
Yok
Açıklama

Diğer ön plan hizmeti kapsamı dışındaki geçerli ön plan hizmeti kullanım alanlarını kapsar. ön plan hizmet türleri için kullanılır.

FOREGROUND_SERVICE_TYPE_SPECIAL_USE beyana ek olarak, ön plan hizmet türüyle birlikte, geliştiricilerin kullanım alanlarını manifest'ini kullanabilirsiniz. Bunu yapmak için<property> <service> öğesi. Bu değerler ve karşılık gelen kullanım alanları şunlardır: incelenir. Kullanım sağladığınız örnekler serbest biçimli olmalıdır ve bunun için yeterli miktarda incelemecinin specialUse öğesini neden kullanmanız gerektiğini bilmesi için gerekli bilgileri türü.

<service android:name="fooService" android:foregroundServiceType="specialUse">
  <property android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
      android:value="explanation_for_special_use"/>
</service>

Sistemden muaf

Manifest dosyasında tanımlanacak ön plan hizmet türü
android:foregroundServiceType
systemExempted
Manifest'inizde beyan etme izni
FOREGROUND_SERVICE_SYSTEM_EXEMPTED
startForeground() noktasına ulaşılmasına kalan süre
FOREGROUND_SERVICE_TYPE_SYSTEM_EXEMPTED
Çalışma zamanı ön koşulları
Yok
Açıklama

Sistem uygulamaları ve spesifik sistem entegrasyonları için ayrılmıştır. ön plan hizmetlerini kullanmaya devam edebilir.

Bu türü kullanmak için uygulamanın aşağıdaki ölçütlerden en az birini karşılaması gerekir:

  • Cihaz demo modunda
  • Uygulama bir Cihaz Sahibidir
  • Uygulama bir Profiler Sahibidir
  • ROLE_EMERGENCY rolüne sahip Güvenlik Uygulamaları
  • Cihaz Yöneticisi uygulamaları
  • SCHEDULE_EXACT_ALARM veya USE_EXACT_ALARM iznine sahip ve kullanıcıları Alarmları arka planda devam ettirmek için Ön Plan Hizmeti, yalnızca dokunma teknolojisiyle çalışan alarmlar da dahil.
  • VPN uygulamaları (Ayarlar > Ağ ve İnternet > VPN kullanılarak yapılandırılır)

    Aksi takdirde, bu türün bildirilmesi sistemin ForegroundServiceTypeNotAllowedException

Ön plan hizmeti türlerini kullanmayla ilgili Google Play politika yaptırımı

If your app targets Android 14 or higher, you'll need to declare your app's foreground service types in the Play Console's app content page (Policy > App content). For more information on how to declare your foreground service types in Play Console, see Understanding foreground service and full-screen intent requirements.