Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
InstallReferrerService handles the INSTALL_REFERRER intent from the Google Play Store, launched by InstallReferrerReceiver.
It inherits various constants from android.app.Service and android.content.Context for managing service behavior and accessing system resources.
Two public constructors are available: one accepting a custom service name and another with a default name.
public final class
InstallReferrerService
IntentService for handling the Google Play Store's INSTALL_REFERRER intent. This service will
be launched from InstallReferrerReceiver. See that class for details.
Inherited Constant Summary
From class
android.app.Service
int
START_CONTINUATION_MASK
int
START_FLAG_REDELIVERY
int
START_FLAG_RETRY
int
START_NOT_STICKY
int
START_REDELIVER_INTENT
int
START_STICKY
int
START_STICKY_COMPATIBILITY
From class
android.content.Context
String
ACCESSIBILITY_SERVICE
String
ACCOUNT_SERVICE
String
ACTIVITY_SERVICE
String
ALARM_SERVICE
String
AUDIO_SERVICE
int
BIND_ABOVE_CLIENT
int
BIND_ADJUST_WITH_ACTIVITY
int
BIND_ALLOW_OOM_MANAGEMENT
int
BIND_AUTO_CREATE
int
BIND_DEBUG_UNBIND
int
BIND_IMPORTANT
int
BIND_NOT_FOREGROUND
int
BIND_WAIVE_PRIORITY
String
BLUETOOTH_SERVICE
String
CLIPBOARD_SERVICE
String
CONNECTIVITY_SERVICE
int
CONTEXT_IGNORE_SECURITY
int
CONTEXT_INCLUDE_CODE
int
CONTEXT_RESTRICTED
String
DEVICE_POLICY_SERVICE
String
DISPLAY_SERVICE
String
DOWNLOAD_SERVICE
String
DROPBOX_SERVICE
String
INPUT_METHOD_SERVICE
String
INPUT_SERVICE
String
KEYGUARD_SERVICE
String
LAYOUT_INFLATER_SERVICE
String
LOCATION_SERVICE
String
MEDIA_ROUTER_SERVICE
int
MODE_APPEND
int
MODE_ENABLE_WRITE_AHEAD_LOGGING
int
MODE_MULTI_PROCESS
int
MODE_PRIVATE
int
MODE_WORLD_READABLE
int
MODE_WORLD_WRITEABLE
String
NFC_SERVICE
String
NOTIFICATION_SERVICE
String
NSD_SERVICE
String
POWER_SERVICE
String
SEARCH_SERVICE
String
SENSOR_SERVICE
String
STORAGE_SERVICE
String
TELEPHONY_SERVICE
String
TEXT_SERVICES_MANAGER_SERVICE
String
UI_MODE_SERVICE
String
USB_SERVICE
String
USER_SERVICE
String
VIBRATOR_SERVICE
String
WALLPAPER_SERVICE
String
WIFI_P2P_SERVICE
String
WIFI_SERVICE
String
WINDOW_SERVICE
From interface
android.content.ComponentCallbacks2
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[],["`InstallReferrerService` is an `IntentService` that handles the `INSTALL_REFERRER` intent from the Google Play Store. It's launched by `InstallReferrerReceiver`. The service inherits constants from `android.app.Service`, `android.content.Context`, and `android.content.ComponentCallbacks2`. These constants define various service types, binding behaviors, and memory trim levels. The class offers two public constructors to create the `InstallReferrerService` instance: one that accepts a string *name* parameter, and one that takes no parameters.\n"]]