Dimitry Ivanov

Android 10 API changes

by DIMITRY IVANOV

With the latest Enhance update to support Android 10 I decided to extract API changes that had happened on the public surface - what classes/fields/methods were added or deprecated (sometimes both! - search for the -+ sequence).

There are few things that I had noticed:

  • Activity, View and TextView are still growing, great!
  • There are 11 entities that were both added and deprecated in Android 10 (again — -+ to look up)
  • There are newly deprecated methods inside already deprecated classes (for example Fragment was deprecated in Pie (28), but all of its' methods are deprecated in Android 10)
  • Deprecation of android.preference.* (it seems that the main user of this package was system Settings app, what will it use instead - androidx artifact 🤔?)
  • NetworkInfo is deprecated (and so as a quick way to check if a device has a network connection - NetworkCallback must be used instead, which doesn't seem very convenient)
  • Build.VERSION_CODES.Q is there (check out the javadoc!)
  • DynamicDrawableSpan.ALIGN_CENTER! Previously only ALIGN_BOTTOM and ALIGN_BASELINE were available

So, here is the gist of API changes in Android 10:

android/Manifest$permission
+   ACCESS_BACKGROUND_LOCATION
+   ACCESS_MEDIA_LOCATION
+   ACTIVITY_RECOGNITION
+   BIND_CALL_REDIRECTION_SERVICE
+   BIND_CARRIER_MESSAGING_CLIENT_SERVICE
+   CALL_COMPANION_APP
-   PROCESS_OUTGOING_CALLS
+   REQUEST_PASSWORD_COMPLEXITY
+   SMS_FINANCIAL_TRANSACTIONS
+   START_VIEW_PERMISSION_USAGE
+   USE_FULL_SCREEN_INTENT

android/Manifest$permission_group
+   ACTIVITY_RECOGNITION
android/R$attr
+   allowAudioPlaybackCapture
-   codes
+   enforceNavigationBarContrast
+   enforceStatusBarContrast
+   forceDarkAllowed
+   forceUriPermissions
+   foregroundServiceType
+   hasFragileUserData
-   horizontalGap
-   iconPreview
+   identifier
+   inheritShowWhenLocked
+   interactiveUiTimeout
+   isLightTheme
-   isModifier
-   isRepeatable
+   isSplitRequired
-   isSticky
-   keyBackground
-   keyEdgeFlags
-   keyHeight
-   keyIcon
-   keyLabel
-   keyOutputText
-   keyPreviewHeight
-   keyPreviewLayout
-   keyPreviewOffset
-   keyTextColor
-   keyTextSize
-   keyWidth
-   keyboardMode
-   labelTextSize
+   minAspectRatio
+   nonInteractiveUiTimeout
+   opticalInsetBottom
+   opticalInsetLeft
+   opticalInsetRight
+   opticalInsetTop
+   packageType
-   popupCharacters
-   popupKeyboard
-   popupLayout
+   requestLegacyExternalStorage
-   rowEdgeFlags
+   secureElementName
+   selectionDividerHeight
+   settingsSliceUri
-   sharedUserId
-   sharedUserLabel
+   shell
-   state_long_pressable
+   supportsMultipleDisplays
-   targetSandboxVersion
+   textLocale
+   useAppZygote
+   useEmbeddedDex
-   verticalCorrection
-   verticalGap
+   zygotePreloadName
android/R$id
+   accessibilityActionPageDown
+   accessibilityActionPageLeft
+   accessibilityActionPageRight
+   accessibilityActionPageUp
-   keyboardView
android/R$style
+   ThemeOverlay_DeviceDefault_Accent_DayNight
+   Theme_DeviceDefault_DayNight
-   Widget_KeyboardView
android/accessibilityservice/AccessibilityService
+   SHOW_MODE_IGNORE_HARD_KEYBOARD
android/accessibilityservice/AccessibilityServiceInfo
+   FLAG_REQUEST_SHORTCUT_WARNING_DIALOG_SPOKEN_FEEDBACK
+   getInteractiveUiTimeoutMillis()I
+   getNonInteractiveUiTimeoutMillis()I
+   setInteractiveUiTimeoutMillis(I)V
+   setNonInteractiveUiTimeoutMillis(I)V
android/app/ActionBar$OnNavigationListener
-   onNavigationItemSelected(IJ)Z
android/app/ActionBar$Tab
-   INVALID_POSITION
-   <init>()V
-   getContentDescription()LCharSequence;
-   getCustomView()LView;
-   getIcon()LDrawable;
-   getPosition()I
-   getTag()LObject;
-   getText()LCharSequence;
-   select()V
-   setContentDescription(I)LTab;
-   setContentDescription(LCharSequence;)LTab;
-   setCustomView(I)LTab;
-   setCustomView(LView;)LTab;
-   setIcon(I)LTab;
-   setIcon(LDrawable;)LTab;
-   setTabListener(LTabListener;)LTab;
-   setTag(LObject;)LTab;
-   setText(I)LTab;
-   setText(LCharSequence;)LTab;
android/app/ActionBar$TabListener
-   onTabReselected(LTab;LFragmentTransaction;)V
-   onTabSelected(LTab;LFragmentTransaction;)V
-   onTabUnselected(LTab;LFragmentTransaction;)V
android/app/Activity
+   onGetDirectActions(LCancellationSignal;LConsumer;)V
+   onPerformDirectAction(LString;LBundle;LCancellationSignal;LConsumer;)V
-   onStateNotSaved()V
+   onTopResumedActivityChanged(Z)V
+   registerActivityLifecycleCallbacks(LActivityLifecycleCallbacks;)V
+   setInheritShowWhenLocked(Z)V
+   unregisterActivityLifecycleCallbacks(LActivityLifecycleCallbacks;)V
android/app/ActivityGroup
-   <init>()V
-   <init>(Z)V
-   getCurrentActivity()LActivity;
-   getLocalActivityManager()LLocalActivityManager;
android/app/ActivityManager
+   isActivityStartAllowedOnDisplay(LContext;ILIntent;)Z
-   isRunningInTestHarness()Z
+   isRunningInUserTestHarness()Z
android/app/ActivityManager$RecentTaskInfo
-   affiliatedTaskId
-   description
-   id
-   persistentId
android/app/ActivityManager$RunningTaskInfo
-   description
-   id
-   numRunning
-   thumbnail
android/app/AppComponentFactory
+   instantiateClassLoader(LClassLoader;LApplicationInfo;)LClassLoader;
android/app/AppOpsManager
+   MODE_FOREGROUND
+   WATCH_FOREGROUND_CHANGES
-   checkOp(LString;ILString;)I
-   checkOpNoThrow(LString;ILString;)I
+   noteProxyOpNoThrow(LString;LString;I)I
+   startWatchingMode(LString;LString;ILOnOpChangedListener;)V
+   unsafeCheckOp(LString;ILString;)I
+   unsafeCheckOpNoThrow(LString;ILString;)I
+   unsafeCheckOpRaw(LString;ILString;)I
+   unsafeCheckOpRawNoThrow(LString;ILString;)I
android/app/Application$ActivityLifecycleCallbacks
+   onActivityPostCreated(LActivity;LBundle;)V
+   onActivityPostDestroyed(LActivity;)V
+   onActivityPostPaused(LActivity;)V
+   onActivityPostResumed(LActivity;)V
+   onActivityPostSaveInstanceState(LActivity;LBundle;)V
+   onActivityPostStarted(LActivity;)V
+   onActivityPostStopped(LActivity;)V
+   onActivityPreCreated(LActivity;LBundle;)V
+   onActivityPreDestroyed(LActivity;)V
+   onActivityPrePaused(LActivity;)V
+   onActivityPreResumed(LActivity;)V
+   onActivityPreSaveInstanceState(LActivity;LBundle;)V
+   onActivityPreStarted(LActivity;)V
+   onActivityPreStopped(LActivity;)V
android/app/AutomaticZenRule
+   <init>(LString;LComponentName;LComponentName;LUri;LZenPolicy;IZ)V
-   <init>(LString;LComponentName;LUri;IZ)V
+   getConfigurationActivity()LComponentName;
+   getZenPolicy()LZenPolicy;
+   setConfigurationActivity(LComponentName;)V
+   setZenPolicy(LZenPolicy;)V
android/app/DialogFragment
-   STYLE_NORMAL
-   STYLE_NO_FRAME
-   STYLE_NO_INPUT
-   STYLE_NO_TITLE
-   <init>()V
-   dismiss()V
-   dismissAllowingStateLoss()V
-   getDialog()LDialog;
-   getShowsDialog()Z
-   getTheme()I
-   isCancelable()Z
-   onCreateDialog(LBundle;)LDialog;
-   setCancelable(Z)V
-   setShowsDialog(Z)V
-   setStyle(II)V
-   show(LFragmentManager;LString;)V
-   show(LFragmentTransaction;LString;)I
+android/app/DirectAction
+android/app/DirectAction$Builder
android/app/DownloadManager
-   addCompletedDownload(LString;LString;ZLString;LString;JZ)J
-   addCompletedDownload(LString;LString;ZLString;LString;JZLUri;LUri;)J
android/app/DownloadManager$Request
-   allowScanningByMediaScanner()V
-   setVisibleInDownloadsUi(Z)LRequest;
android/app/Fragment
-   <init>()V
-   dump(LString;LFileDescriptor;LPrintWriter;[LString;)V
-   getActivity()LActivity;
-   getAllowEnterTransitionOverlap()Z
-   getAllowReturnTransitionOverlap()Z
-   getArguments()LBundle;
-   getChildFragmentManager()LFragmentManager;
-   getContext()LContext;
-   getEnterTransition()LTransition;
-   getExitTransition()LTransition;
-   getFragmentManager()LFragmentManager;
-   getHost()LObject;
-   getId()I
-   getLayoutInflater()LLayoutInflater;
-   getParentFragment()LFragment;
-   getReenterTransition()LTransition;
-   getResources()LResources;
-   getRetainInstance()Z
-   getReturnTransition()LTransition;
-   getSharedElementEnterTransition()LTransition;
-   getSharedElementReturnTransition()LTransition;
-   getString(I)LString;
-   getString(I[LObject;)LString;
-   getTag()LString;
-   getTargetFragment()LFragment;
-   getTargetRequestCode()I
-   getText(I)LCharSequence;
-   getUserVisibleHint()Z
-   getView()LView;
-   instantiate(LContext;LString;)LFragment;
-   instantiate(LContext;LString;LBundle;)LFragment;
-   isAdded()Z
-   isDetached()Z
-   isHidden()Z
-   isInLayout()Z
-   isRemoving()Z
-   isResumed()Z
-   isStateSaved()Z
-   isVisible()Z
-   onActivityCreated(LBundle;)V
-   onActivityResult(IILIntent;)V
-   onAttach(LContext;)V
-   onAttachFragment(LFragment;)V
-   onContextItemSelected(LMenuItem;)Z
-   onCreate(LBundle;)V
-   onCreateAnimator(IZI)LAnimator;
-   onCreateOptionsMenu(LMenu;LMenuInflater;)V
-   onCreateView(LLayoutInflater;LViewGroup;LBundle;)LView;
-   onDestroy()V
-   onDestroyOptionsMenu()V
-   onDestroyView()V
-   onDetach()V
-   onGetLayoutInflater(LBundle;)LLayoutInflater;
-   onHiddenChanged(Z)V
-   onInflate(LContext;LAttributeSet;LBundle;)V
-   onMultiWindowModeChanged(ZLConfiguration;)V
-   onOptionsItemSelected(LMenuItem;)Z
-   onOptionsMenuClosed(LMenu;)V
-   onPause()V
-   onPictureInPictureModeChanged(ZLConfiguration;)V
-   onPrepareOptionsMenu(LMenu;)V
-   onRequestPermissionsResult(I[LString;[I)V
-   onResume()V
-   onSaveInstanceState(LBundle;)V
-   onStart()V
-   onStop()V
-   onViewCreated(LView;LBundle;)V
-   onViewStateRestored(LBundle;)V
-   postponeEnterTransition()V
-   registerForContextMenu(LView;)V
-   requestPermissions([LString;I)V
-   setAllowEnterTransitionOverlap(Z)V
-   setAllowReturnTransitionOverlap(Z)V
-   setArguments(LBundle;)V
-   setEnterSharedElementCallback(LSharedElementCallback;)V
-   setEnterTransition(LTransition;)V
-   setExitSharedElementCallback(LSharedElementCallback;)V
-   setExitTransition(LTransition;)V
-   setHasOptionsMenu(Z)V
-   setInitialSavedState(LSavedState;)V
-   setMenuVisibility(Z)V
-   setReenterTransition(LTransition;)V
-   setRetainInstance(Z)V
-   setReturnTransition(LTransition;)V
-   setSharedElementEnterTransition(LTransition;)V
-   setSharedElementReturnTransition(LTransition;)V
-   setTargetFragment(LFragment;I)V
-   setUserVisibleHint(Z)V
-   shouldShowRequestPermissionRationale(LString;)Z
-   startActivity(LIntent;)V
-   startActivity(LIntent;LBundle;)V
-   startActivityForResult(LIntent;I)V
-   startActivityForResult(LIntent;ILBundle;)V
-   startIntentSenderForResult(LIntentSender;ILIntent;IIILBundle;)V
-   startPostponedEnterTransition()V
-   unregisterForContextMenu(LView;)V
android/app/Fragment$InstantiationException
-   <init>(LString;LException;)V
android/app/Fragment$SavedState
-   CREATOR
android/app/FragmentBreadCrumbs
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   setActivity(LActivity;)V
-   setMaxVisible(I)V
-   setOnBreadCrumbClickListener(LOnBreadCrumbClickListener;)V
-   setParentTitle(LCharSequence;LCharSequence;LOnClickListener;)V
-   setTitle(LCharSequence;LCharSequence;)V
android/app/FragmentBreadCrumbs$OnBreadCrumbClickListener
-   onBreadCrumbClick(LBackStackEntry;I)Z
android/app/FragmentContainer
-   <init>()V
-   onFindViewById(I)LView;
-   onHasView()Z
android/app/FragmentController
-   attachHost(LFragment;)V
-   createController(LFragmentHostCallback;)LFragmentController;
-   dispatchActivityCreated()V
-   dispatchConfigurationChanged(LConfiguration;)V
-   dispatchContextItemSelected(LMenuItem;)Z
-   dispatchCreate()V
-   dispatchCreateOptionsMenu(LMenu;LMenuInflater;)Z
-   dispatchDestroy()V
-   dispatchDestroyView()V
-   dispatchLowMemory()V
-   dispatchMultiWindowModeChanged(ZLConfiguration;)V
-   dispatchOptionsItemSelected(LMenuItem;)Z
-   dispatchOptionsMenuClosed(LMenu;)V
-   dispatchPause()V
-   dispatchPictureInPictureModeChanged(ZLConfiguration;)V
-   dispatchPrepareOptionsMenu(LMenu;)Z
-   dispatchResume()V
-   dispatchStart()V
-   dispatchStop()V
-   dispatchTrimMemory(I)V
-   doLoaderDestroy()V
-   doLoaderStart()V
-   doLoaderStop(Z)V
-   dumpLoaders(LString;LFileDescriptor;LPrintWriter;[LString;)V
-   execPendingActions()Z
-   findFragmentByWho(LString;)LFragment;
-   getFragmentManager()LFragmentManager;
-   getLoaderManager()LLoaderManager;
-   noteStateNotSaved()V
-   onCreateView(LView;LString;LContext;LAttributeSet;)LView;
-   reportLoaderStart()V
-   restoreAllState(LParcelable;LFragmentManagerNonConfig;)V
-   restoreLoaderNonConfig(LArrayMap;)V
-   retainLoaderNonConfig()LArrayMap;
-   retainNestedNonConfig()LFragmentManagerNonConfig;
-   saveAllState()LParcelable;
android/app/FragmentHostCallback
-   <init>(LContext;LHandler;I)V
-   onAttachFragment(LFragment;)V
-   onDump(LString;LFileDescriptor;LPrintWriter;[LString;)V
-   onGetHost()LObject;
-   onGetLayoutInflater()LLayoutInflater;
-   onGetWindowAnimations()I
-   onHasWindowAnimations()Z
-   onInvalidateOptionsMenu()V
-   onRequestPermissionsFromFragment(LFragment;[LString;I)V
-   onShouldSaveFragmentState(LFragment;)Z
-   onStartActivityFromFragment(LFragment;LIntent;ILBundle;)V
-   onStartIntentSenderFromFragment(LFragment;LIntentSender;ILIntent;IIILBundle;)V
-   onUseFragmentManagerInflaterFactory()Z
android/app/FragmentManager
-   POP_BACK_STACK_INCLUSIVE
-   <init>()V
-   addOnBackStackChangedListener(LOnBackStackChangedListener;)V
-   beginTransaction()LFragmentTransaction;
-   dump(LString;LFileDescriptor;LPrintWriter;[LString;)V
-   enableDebugLogging(Z)V
-   executePendingTransactions()Z
-   findFragmentById(I)LFragment;
-   findFragmentByTag(LString;)LFragment;
-   getBackStackEntryAt(I)LBackStackEntry;
-   getBackStackEntryCount()I
-   getFragment(LBundle;LString;)LFragment;
-   getFragments()LList;
-   getPrimaryNavigationFragment()LFragment;
-   invalidateOptionsMenu()V
-   isDestroyed()Z
-   isStateSaved()Z
-   popBackStack()V
-   popBackStack(II)V
-   popBackStack(LString;I)V
-   popBackStackImmediate()Z
-   popBackStackImmediate(II)Z
-   popBackStackImmediate(LString;I)Z
-   putFragment(LBundle;LString;LFragment;)V
-   registerFragmentLifecycleCallbacks(LFragmentLifecycleCallbacks;Z)V
-   removeOnBackStackChangedListener(LOnBackStackChangedListener;)V
-   saveFragmentInstanceState(LFragment;)LSavedState;
-   unregisterFragmentLifecycleCallbacks(LFragmentLifecycleCallbacks;)V
android/app/FragmentManager$BackStackEntry
-   getBreadCrumbShortTitle()LCharSequence;
-   getBreadCrumbShortTitleRes()I
-   getBreadCrumbTitle()LCharSequence;
-   getBreadCrumbTitleRes()I
-   getId()I
-   getName()LString;
android/app/FragmentManager$FragmentLifecycleCallbacks
-   <init>()V
-   onFragmentActivityCreated(LFragmentManager;LFragment;LBundle;)V
-   onFragmentAttached(LFragmentManager;LFragment;LContext;)V
-   onFragmentCreated(LFragmentManager;LFragment;LBundle;)V
-   onFragmentDestroyed(LFragmentManager;LFragment;)V
-   onFragmentDetached(LFragmentManager;LFragment;)V
-   onFragmentPaused(LFragmentManager;LFragment;)V
-   onFragmentPreAttached(LFragmentManager;LFragment;LContext;)V
-   onFragmentPreCreated(LFragmentManager;LFragment;LBundle;)V
-   onFragmentResumed(LFragmentManager;LFragment;)V
-   onFragmentSaveInstanceState(LFragmentManager;LFragment;LBundle;)V
-   onFragmentStarted(LFragmentManager;LFragment;)V
-   onFragmentStopped(LFragmentManager;LFragment;)V
-   onFragmentViewCreated(LFragmentManager;LFragment;LView;LBundle;)V
-   onFragmentViewDestroyed(LFragmentManager;LFragment;)V
android/app/FragmentManager$OnBackStackChangedListener
-   onBackStackChanged()V
android/app/FragmentTransaction
-   TRANSIT_ENTER_MASK
-   TRANSIT_EXIT_MASK
-   TRANSIT_FRAGMENT_CLOSE
-   TRANSIT_FRAGMENT_FADE
-   TRANSIT_FRAGMENT_OPEN
-   TRANSIT_NONE
-   TRANSIT_UNSET
-   <init>()V
-   add(ILFragment;)LFragmentTransaction;
-   add(ILFragment;LString;)LFragmentTransaction;
-   add(LFragment;LString;)LFragmentTransaction;
-   addSharedElement(LView;LString;)LFragmentTransaction;
-   addToBackStack(LString;)LFragmentTransaction;
-   attach(LFragment;)LFragmentTransaction;
-   commit()I
-   commitAllowingStateLoss()I
-   commitNow()V
-   commitNowAllowingStateLoss()V
-   detach(LFragment;)LFragmentTransaction;
-   disallowAddToBackStack()LFragmentTransaction;
-   hide(LFragment;)LFragmentTransaction;
-   isAddToBackStackAllowed()Z
-   isEmpty()Z
-   remove(LFragment;)LFragmentTransaction;
-   replace(ILFragment;)LFragmentTransaction;
-   replace(ILFragment;LString;)LFragmentTransaction;
-   runOnCommit(LRunnable;)LFragmentTransaction;
-   setBreadCrumbShortTitle(I)LFragmentTransaction;
-   setBreadCrumbShortTitle(LCharSequence;)LFragmentTransaction;
-   setBreadCrumbTitle(I)LFragmentTransaction;
-   setBreadCrumbTitle(LCharSequence;)LFragmentTransaction;
-   setCustomAnimations(II)LFragmentTransaction;
-   setCustomAnimations(IIII)LFragmentTransaction;
-   setPrimaryNavigationFragment(LFragment;)LFragmentTransaction;
-   setReorderingAllowed(Z)LFragmentTransaction;
-   setTransition(I)LFragmentTransaction;
-   setTransitionStyle(I)LFragmentTransaction;
-   show(LFragment;)LFragmentTransaction;
android/app/KeyguardManager
-   createConfirmDeviceCredentialIntent(LCharSequence;LCharSequence;)LIntent;
android/app/KeyguardManager$KeyguardLock
-   disableKeyguard()V
-   reenableKeyguard()V
android/app/KeyguardManager$OnKeyguardExitResult
-   onKeyguardExitResult(Z)V
android/app/ListFragment
-   <init>()V
-   getListAdapter()LListAdapter;
-   getListView()LListView;
-   getSelectedItemId()J
-   getSelectedItemPosition()I
-   onListItemClick(LListView;LView;IJ)V
-   setEmptyText(LCharSequence;)V
-   setListAdapter(LListAdapter;)V
-   setListShown(Z)V
-   setListShownNoAnimation(Z)V
-   setSelection(I)V
android/app/LoaderManager
-   <init>()V
-   destroyLoader(I)V
-   dump(LString;LFileDescriptor;LPrintWriter;[LString;)V
-   enableDebugLogging(Z)V
-   getLoader(I)LLoader;
-   initLoader(ILBundle;LLoaderCallbacks;)LLoader;
-   restartLoader(ILBundle;LLoaderCallbacks;)LLoader;
android/app/LoaderManager$LoaderCallbacks
-   onCreateLoader(ILBundle;)LLoader;
-   onLoadFinished(LLoader;LObject;)V
-   onLoaderReset(LLoader;)V
android/app/LocalActivityManager
-   <init>(LActivity;Z)V
-   destroyActivity(LString;Z)LWindow;
-   dispatchCreate(LBundle;)V
-   dispatchDestroy(Z)V
-   dispatchPause(Z)V
-   dispatchResume()V
-   dispatchStop()V
-   getActivity(LString;)LActivity;
-   getCurrentActivity()LActivity;
-   getCurrentId()LString;
-   removeAllActivities()V
-   saveInstanceState()LBundle;
-   startActivity(LString;LIntent;)LWindow;
android/app/Notification
+   FLAG_BUBBLE
+   getAllowSystemGeneratedContextualActions()Z
+   getBubbleMetadata()LBubbleMetadata;
+   getLocusId()LLocusId;
android/app/Notification$Action
+   isContextual()Z
android/app/Notification$Action$Builder
+   setContextual(Z)Landroid/app/Notification$Action$Builder;
+android/app/Notification$BubbleMetadata
+android/app/Notification$BubbleMetadata$Builder
android/app/Notification$Builder
+   setAllowSystemGeneratedContextualActions(Z)LBuilder;
+   setBubbleMetadata(LBubbleMetadata;)LBuilder;
+   setLocusId(LLocusId;)LBuilder;
android/app/Notification$WearableExtender
-   SCREEN_TIMEOUT_LONG
-   SCREEN_TIMEOUT_SHORT
-   SIZE_DEFAULT
-   SIZE_FULL_SCREEN
-   SIZE_LARGE
-   SIZE_MEDIUM
-   SIZE_SMALL
-   SIZE_XSMALL
-   addPage(LNotification;)LWearableExtender;
-   addPages(LList;)LWearableExtender;
-   clearPages()LWearableExtender;
-   getBackground()LBitmap;
-   getDisplayIntent()LPendingIntent;
-   getHintAmbientBigPicture()Z
-   getPages()LList;
-   setBackground(LBitmap;)LWearableExtender;
-   setDisplayIntent(LPendingIntent;)LWearableExtender;
-   setHintAmbientBigPicture(Z)LWearableExtender;
android/app/NotificationChannel
+   canBubble()Z
+   hasUserSetImportance()Z
+   setAllowBubbles(Z)V
android/app/NotificationManager
+   ACTION_AUTOMATIC_ZEN_RULE
+   EXTRA_AUTOMATIC_RULE_ID
+   META_DATA_AUTOMATIC_RULE_TYPE
+   META_DATA_RULE_INSTANCE_LIMIT
+   areBubblesAllowed()Z
+   areNotificationsPaused()Z
+   canNotifyAsPackage(LString;)Z
+   getNotificationDelegate()LString;
+   notifyAsPackage(LString;LString;ILNotification;)V
+   setAutomaticZenRuleState(LString;LCondition;)V
+   setNotificationDelegate(LString;)V
+   shouldHideSilentStatusBarIcons()Z
android/app/ProgressDialog
-   STYLE_HORIZONTAL
-   STYLE_SPINNER
-   <init>(LContext;)V
-   <init>(LContext;I)V
-   getMax()I
-   getProgress()I
-   getSecondaryProgress()I
-   incrementProgressBy(I)V
-   incrementSecondaryProgressBy(I)V
-   isIndeterminate()Z
-   setIndeterminate(Z)V
-   setIndeterminateDrawable(LDrawable;)V
-   setMax(I)V
-   setProgress(I)V
-   setProgressDrawable(LDrawable;)V
-   setProgressNumberFormat(LString;)V
-   setProgressPercentFormat(LNumberFormat;)V
-   setProgressStyle(I)V
-   setSecondaryProgress(I)V
-   show(LContext;LCharSequence;LCharSequence;)LProgressDialog;
-   show(LContext;LCharSequence;LCharSequence;Z)LProgressDialog;
-   show(LContext;LCharSequence;LCharSequence;ZZ)LProgressDialog;
-   show(LContext;LCharSequence;LCharSequence;ZZLOnCancelListener;)LProgressDialog;
+android/app/RecoverableSecurityException
android/app/RemoteInput
+   EDIT_CHOICES_BEFORE_SENDING_AUTO
+   EDIT_CHOICES_BEFORE_SENDING_DISABLED
+   EDIT_CHOICES_BEFORE_SENDING_ENABLED
+   getEditChoicesBeforeSending()I
android/app/RemoteInput$Builder
+   setEditChoicesBeforeSending(I)LBuilder;
android/app/Service
+   getForegroundServiceType()I
+   startForeground(ILNotification;I)V
+android/app/StatusBarManager
android/app/TabActivity
-   <init>()V
-   getTabHost()LTabHost;
-   getTabWidget()LTabWidget;
-   setDefaultTab(I)V
-   setDefaultTab(LString;)V
+android/app/TaskInfo
android/app/UiAutomation
+   adoptShellPermissionIdentity()V
+   adoptShellPermissionIdentity([LString;)V
+   dropShellPermissionIdentity()V
android/app/VoiceInteractor
+   isDestroyed()Z
+   notifyDirectActionsChanged()V
+   registerOnDestroyedCallback(LExecutor;LRunnable;)Z
+   unregisterOnDestroyedCallback(LRunnable;)Z
android/app/WallpaperInfo
+   getSettingsSliceUri()LUri;
+   supportsMultipleDisplays()Z
+android/app/ZygotePreload
+android/app/admin/DelegatedAdminReceiver
android/app/admin/DeviceAdminReceiver
+   ACTION_CHOOSE_PRIVATE_KEY_ALIAS
+   ACTION_NETWORK_LOGS_AVAILABLE
android/app/admin/DevicePolicyManager
+   ACTION_ADMIN_POLICY_COMPLIANCE
+   ACTION_GET_PROVISIONING_MODE
+   DELEGATION_CERT_SELECTION
+   DELEGATION_NETWORK_LOGGING
+   EXTRA_PASSWORD_COMPLEXITY
+   EXTRA_PROVISIONING_IMEI
+   EXTRA_PROVISIONING_MODE
+   EXTRA_PROVISIONING_SERIAL_NUMBER
+   EXTRA_PROVISIONING_SKIP_EDUCATION_SCREENS
+   EXTRA_PROVISIONING_WIFI_ANONYMOUS_IDENTITY
+   EXTRA_PROVISIONING_WIFI_CA_CERTIFICATE
+   EXTRA_PROVISIONING_WIFI_DOMAIN
+   EXTRA_PROVISIONING_WIFI_EAP_METHOD
+   EXTRA_PROVISIONING_WIFI_IDENTITY
+   EXTRA_PROVISIONING_WIFI_PHASE2_AUTH
+   EXTRA_PROVISIONING_WIFI_USER_CERTIFICATE
+   PASSWORD_COMPLEXITY_HIGH
+   PASSWORD_COMPLEXITY_LOW
+   PASSWORD_COMPLEXITY_MEDIUM
+   PASSWORD_COMPLEXITY_NONE
+   PRIVATE_DNS_MODE_OFF
+   PRIVATE_DNS_MODE_OPPORTUNISTIC
+   PRIVATE_DNS_MODE_PROVIDER_HOSTNAME
+   PRIVATE_DNS_MODE_UNKNOWN
+   PRIVATE_DNS_SET_ERROR_FAILURE_SETTING
+   PRIVATE_DNS_SET_ERROR_HOST_NOT_SERVING
+   PRIVATE_DNS_SET_NO_ERROR
+   PROVISIONING_MODE_FULLY_MANAGED_DEVICE
+   PROVISIONING_MODE_MANAGED_PROFILE
+   WIPE_SILENTLY
+   getAlwaysOnVpnLockdownWhitelist(LComponentName;)LSet;
+   getCrossProfileCalendarPackages(LComponentName;)LSet;
+   getGlobalPrivateDnsHost(LComponentName;)LString;
+   getGlobalPrivateDnsMode(LComponentName;)I
+   getPasswordComplexity()I
+   installSystemUpdate(LComponentName;LUri;LExecutor;LInstallSystemUpdateCallback;)V
+   isAlwaysOnVpnLockdownEnabled(LComponentName;)Z
+   setAlwaysOnVpnPackage(LComponentName;LString;ZLSet;)V
+   setCrossProfileCalendarPackages(LComponentName;LSet;)V
+   setDefaultSmsApplication(LComponentName;LString;)V
+   setGlobalPrivateDnsModeOpportunistic(LComponentName;)I
+   setGlobalPrivateDnsModeSpecifiedHost(LComponentName;LString;)I
+android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback
android/app/backup/BackupManager
+   getUserForAncestralSerialNumber(J)LUserHandle;
+android/app/role/RoleManager
android/app/usage/UsageEvents$Event
+   ACTIVITY_PAUSED
+   ACTIVITY_RESUMED
+   ACTIVITY_STOPPED
+   DEVICE_SHUTDOWN
+   DEVICE_STARTUP
+   FOREGROUND_SERVICE_START
+   FOREGROUND_SERVICE_STOP
-   MOVE_TO_BACKGROUND
-   MOVE_TO_FOREGROUND
android/app/usage/UsageStats
+   getLastTimeForegroundServiceUsed()J
+   getLastTimeVisible()J
+   getTotalTimeForegroundServiceUsed()J
+   getTotalTimeVisible()J
android/appwidget/AppWidgetHostView
+   setOnLightBackground(Z)V
android/bluetooth/BluetoothAdapter
+   listenUsingInsecureL2capChannel()LBluetoothServerSocket;
+   listenUsingL2capChannel()LBluetoothServerSocket;
android/bluetooth/BluetoothDevice
+   createInsecureL2capChannel(I)LBluetoothSocket;
+   createL2capChannel(I)LBluetoothSocket;
-android/bluetooth/BluetoothHealth
-   APP_CONFIG_REGISTRATION_FAILURE
-   APP_CONFIG_REGISTRATION_SUCCESS
-   APP_CONFIG_UNREGISTRATION_FAILURE
-   APP_CONFIG_UNREGISTRATION_SUCCESS
-   CHANNEL_TYPE_RELIABLE
-   CHANNEL_TYPE_STREAMING
-   SINK_ROLE
-   SOURCE_ROLE
-   STATE_CHANNEL_CONNECTED
-   STATE_CHANNEL_CONNECTING
-   STATE_CHANNEL_DISCONNECTED
-   STATE_CHANNEL_DISCONNECTING
-   connectChannelToSource(LBluetoothDevice;LBluetoothHealthAppConfiguration;)Z
-   disconnectChannel(LBluetoothDevice;LBluetoothHealthAppConfiguration;I)Z
-   getMainChannelFd(LBluetoothDevice;LBluetoothHealthAppConfiguration;)LParcelFileDescriptor;
-   registerSinkAppConfiguration(LString;ILBluetoothHealthCallback;)Z
-   unregisterAppConfiguration(LBluetoothHealthAppConfiguration;)Z
-android/bluetooth/BluetoothHealthAppConfiguration
-   CREATOR
-   getDataType()I
-   getName()LString;
-   getRole()I
-android/bluetooth/BluetoothHealthCallback
-   <init>()V
-   onHealthAppConfigurationStatusChange(LBluetoothHealthAppConfiguration;I)V
-   onHealthChannelStateChange(LBluetoothHealthAppConfiguration;LBluetoothDevice;IILParcelFileDescriptor;I)V
+android/bluetooth/BluetoothHearingAid
android/bluetooth/BluetoothProfile
-   HEALTH
+   HEARING_AID
android/bluetooth/BluetoothServerSocket
+   getPsm()I
android/bluetooth/le/ScanFilter
+   getServiceSolicitationUuid()LParcelUuid;
+   getServiceSolicitationUuidMask()LParcelUuid;
android/bluetooth/le/ScanFilter$Builder
+   setServiceSolicitationUuid(LParcelUuid;)LBuilder;
+   setServiceSolicitationUuid(LParcelUuid;LParcelUuid;)LBuilder;
android/bluetooth/le/ScanRecord
+   getServiceSolicitationUuids()LList;
android/content/AsyncTaskLoader
-   <init>(LContext;)V
-   cancelLoadInBackground()V
-   isLoadInBackgroundCanceled()Z
-   loadInBackground()LObject;
-   onCanceled(LObject;)V
-   onLoadInBackground()LObject;
-   setUpdateThrottle(J)V
android/content/ContentProvider
+   applyBatch(LString;LArrayList;)[LContentProviderResult;
+   call(LString;LString;LString;LBundle;)LBundle;
+   clearCallingIdentity()LCallingIdentity;
+   restoreCallingIdentity(LCallingIdentity;)V
+android/content/ContentProvider$CallingIdentity
android/content/ContentProviderClient
+   applyBatch(LString;LArrayList;)[LContentProviderResult;
+   call(LString;LString;LString;LBundle;)LBundle;
+   openTypedAssetFile(LUri;LString;LBundle;LCancellationSignal;)LAssetFileDescriptor;
android/content/ContentResolver
+   call(LString;LString;LString;LBundle;)LBundle;
+   getTypeInfo(LString;)LMimeTypeInfo;
+   loadThumbnail(LUri;LSize;LCancellationSignal;)LBitmap;
+   openAssetFile(LUri;LString;LCancellationSignal;)LAssetFileDescriptor;
+   openFile(LUri;LString;LCancellationSignal;)LParcelFileDescriptor;
+   openTypedAssetFile(LUri;LString;LBundle;LCancellationSignal;)LAssetFileDescriptor;
+   wrap(LContentProvider;)LContentResolver;
+   wrap(LContentProviderClient;)LContentResolver;
+android/content/ContentResolver$MimeTypeInfo
android/content/ContentUris
+   removeId(LUri;)LUri;
android/content/Context
+   BIND_INCLUDE_CAPABILITIES
+   BIND_NOT_PERCEPTIBLE
+   BIOMETRIC_SERVICE
+   ROLE_SERVICE
+   bindIsolatedService(LIntent;ILString;LExecutor;LServiceConnection;)Z
+   bindService(LIntent;ILExecutor;LServiceConnection;)Z
+   getOpPackageName()LString;
+   updateServiceGroup(LServiceConnection;II)V
android/content/CursorLoader
-   <init>(LContext;)V
-   <init>(LContext;LUri;[LString;LString;[LString;LString;)V
-   deliverResult(LCursor;)V
-   getProjection()[LString;
-   getSelection()LString;
-   getSelectionArgs()[LString;
-   getSortOrder()LString;
-   getUri()LUri;
-   loadInBackground()LCursor;
-   onCanceled(LCursor;)V
-   setProjection([LString;)V
-   setSelection(LString;)V
-   setSelectionArgs([LString;)V
-   setSortOrder(LString;)V
-   setUri(LUri;)V
android/content/Intent
+   ACTION_DEFINE
-   ACTION_INSTALL_PACKAGE
-   ACTION_MEDIA_SCANNER_SCAN_FILE
-   ACTION_NEW_OUTGOING_CALL
+   ACTION_TRANSLATE
-   ACTION_UNINSTALL_PACKAGE
+   ACTION_VIEW_LOCUS
+   ACTION_VIEW_PERMISSION_USAGE
+   CATEGORY_APP_FILES
+   CATEGORY_SECONDARY_HOME
+   EXTRA_AUTO_LAUNCH_SINGLE_CHOICE
+   EXTRA_CONTENT_QUERY
+   EXTRA_DURATION_MILLIS
+   EXTRA_LOCUS_ID
+   EXTRA_SHORTCUT_ID
+   FILL_IN_IDENTIFIER
+   FLAG_DIRECT_BOOT_AUTO
+   getIdentifier()LString;
+   setIdentifier(LString;)LIntent;
android/content/Loader
-   <init>(LContext;)V
-   abandon()V
-   cancelLoad()Z
-   commitContentChanged()V
-   dataToString(LObject;)LString;
-   deliverCancellation()V
-   deliverResult(LObject;)V
-   dump(LString;LFileDescriptor;LPrintWriter;[LString;)V
-   forceLoad()V
-   getContext()LContext;
-   getId()I
-   isAbandoned()Z
-   isReset()Z
-   isStarted()Z
-   onAbandon()V
-   onCancelLoad()Z
-   onContentChanged()V
-   onForceLoad()V
-   onReset()V
-   onStartLoading()V
-   onStopLoading()V
-   registerListener(ILOnLoadCompleteListener;)V
-   registerOnLoadCanceledListener(LOnLoadCanceledListener;)V
-   reset()V
-   rollbackContentChanged()V
-   startLoading()V
-   stopLoading()V
-   takeContentChanged()Z
-   unregisterListener(LOnLoadCompleteListener;)V
-   unregisterOnLoadCanceledListener(LOnLoadCanceledListener;)V
android/content/Loader$ForceLoadContentObserver
-   <init>(LLoader;)V
android/content/Loader$OnLoadCanceledListener
-   onLoadCanceled(LLoader;)V
android/content/Loader$OnLoadCompleteListener
-   onLoadComplete(LLoader;LObject;)V
+android/content/LocusId
android/content/pm/ApplicationInfo
+   isProfileableByShell()Z
+   isResourceOverlay()Z
android/content/pm/LauncherApps
+   getAllPackageInstallerSessions()LList;
+   registerPackageInstallerSessionCallback(LExecutor;LSessionCallback;)V
+   shouldHideFromSuggestions(LString;LUserHandle;)Z
+   startPackageInstallerSessionDetailsActivity(LSessionInfo;LRect;LBundle;)V
+   unregisterPackageInstallerSessionCallback(LSessionCallback;)V
+android/content/pm/ModuleInfo
android/content/pm/PackageInfo
+   isApex
android/content/pm/PackageInstaller
+   ACTION_SESSION_UPDATED
+   getActiveStagedSession()LSessionInfo;
+   getStagedSessions()LList;
+   installExistingPackage(LString;ILIntentSender;)V
android/content/pm/PackageInstaller$Session
+   addChildSessionId(I)V
+   getChildSessionIds()[I
+   getParentSessionId()I
+   isMultiPackage()Z
+   isStaged()Z
+   removeChildSessionId(I)V
android/content/pm/PackageInstaller$SessionInfo
+   INVALID_ID
+   STAGED_SESSION_ACTIVATION_FAILED
+   STAGED_SESSION_NO_ERROR
+   STAGED_SESSION_UNKNOWN
+   STAGED_SESSION_VERIFICATION_FAILED
+   getChildSessionIds()[I
+   getParentSessionId()I
+   getStagedSessionErrorCode()I
+   getStagedSessionErrorMessage()LString;
+   getUpdatedMillis()J
+   getUser()LUserHandle;
+   isCommitted()Z
+   isMultiPackage()Z
+   isStaged()Z
+   isStagedSessionApplied()Z
+   isStagedSessionFailed()Z
+   isStagedSessionReady()Z
android/content/pm/PackageInstaller$SessionParams
+   RESTRICTED_PERMISSIONS_ALL
+   setMultiPackage()V
+   setWhitelistedRestrictedPermissions(LSet;)V
android/content/pm/PackageManager
+   FEATURE_FACE
+   FEATURE_IPSEC_TUNNELS
+   FEATURE_IRIS
+   FEATURE_NFC_BEAM
+   FEATURE_NFC_OFF_HOST_CARD_EMULATION_ESE
+   FEATURE_NFC_OFF_HOST_CARD_EMULATION_UICC
+   FEATURE_SECURE_LOCK_SCREEN
+   FEATURE_TELEPHONY_IMS
+   FLAG_PERMISSION_WHITELIST_INSTALLER
+   FLAG_PERMISSION_WHITELIST_SYSTEM
+   FLAG_PERMISSION_WHITELIST_UPGRADE
+   MATCH_APEX
+   MATCH_DIRECT_BOOT_AUTO
+   addWhitelistedRestrictedPermission(LString;LString;I)Z
-   clearPackagePreferredActivities(LString;)V
+   getInstalledModules(I)LList;
+   getModuleInfo(LString;I)LModuleInfo;
-   getPreferredActivities(LList;LList;LString;)I
-   getPreferredPackages(I)LList;
+   getSyntheticAppDetailsActivityEnabled(LString;)Z
+   getWhitelistedRestrictedPermissions(LString;I)LSet;
+   isDeviceUpgrading()Z
+   isPackageSuspended(LString;)Z
+   removeWhitelistedRestrictedPermission(LString;LString;I)Z
android/content/pm/PackageStats
-   CREATOR
-   cacheSize
-   codeSize
-   dataSize
-   externalCacheSize
-   externalCodeSize
-   externalDataSize
-   externalMediaSize
-   externalObbSize
-   packageName
-   <init>(LPackageStats;)V
-   <init>(LParcel;)V
-   <init>(LString;)V
android/content/pm/PermissionGroupInfo
-   <init>()V
-   <init>(LPermissionGroupInfo;)V
android/content/pm/PermissionInfo
+   FLAG_HARD_RESTRICTED
+   FLAG_IMMUTABLY_RESTRICTED
+   FLAG_SOFT_RESTRICTED
-   <init>()V
-   <init>(LPermissionInfo;)V
android/content/pm/ProviderInfo
+   forceUriPermissions
android/content/pm/ServiceInfo
+   FLAG_USE_APP_ZYGOTE
+   FOREGROUND_SERVICE_TYPE_CONNECTED_DEVICE
+   FOREGROUND_SERVICE_TYPE_DATA_SYNC
+   FOREGROUND_SERVICE_TYPE_LOCATION
+   FOREGROUND_SERVICE_TYPE_MANIFEST
+   FOREGROUND_SERVICE_TYPE_MEDIA_PLAYBACK
+   FOREGROUND_SERVICE_TYPE_MEDIA_PROJECTION
+   FOREGROUND_SERVICE_TYPE_NONE
+   FOREGROUND_SERVICE_TYPE_PHONE_CALL
+   getForegroundServiceType()I
android/content/pm/ShortcutInfo
+   getLocusId()LLocusId;
android/content/pm/ShortcutInfo$Builder
+   setLocusId(LLocusId;)LBuilder;
+   setLongLived(Z)LBuilder;
+   setPerson(LPerson;)LBuilder;
+   setPersons([LPerson;)LBuilder;
android/content/res/Resources
+   ID_NULL
+   getAttributeSetSourceResId(LAttributeSet;)I
+   getFloat(I)F
-   getMovie(I)LMovie;
android/content/res/Resources$Theme
+   getAttributeResolutionStack(III)[I
+   getExplicitStyle(LAttributeSet;)I
+   rebase()V
android/content/res/TypedArray
+   getSourceResourceId(II)I
android/database/Cursor
+   getNotificationUris()LList;
+   setNotificationUris(LContentResolver;LList;)V
android/database/DatabaseUtils$InsertHelper
-   <init>(LSQLiteDatabase;LString;)V
-   bind(ID)V
-   bind(IF)V
-   bind(II)V
-   bind(IJ)V
-   bind(ILString;)V
-   bind(IZ)V
-   bind(I[B)V
-   bindNull(I)V
-   close()V
-   execute()J
-   getColumnIndex(LString;)I
-   insert(LContentValues;)J
-   prepareForInsert()V
-   prepareForReplace()V
-   replace(LContentValues;)J
android/database/sqlite/SQLiteDatabase$OpenParams$Builder
-   setIdleConnectionTimeout(J)Landroid/database/sqlite/SQLiteDatabase$OpenParams$Builder;
android/database/sqlite/SQLiteOpenHelper
-   setIdleConnectionTimeout(J)V
android/database/sqlite/SQLiteQueryBuilder
+   appendWhereStandalone(LCharSequence;)V
+   delete(LSQLiteDatabase;LString;[LString;)I
+   getCursorFactory()LCursorFactory;
+   getProjectionMap()LMap;
+   isDistinct()Z
+   isStrict()Z
+   update(LSQLiteDatabase;LContentValues;LString;[LString;)I
android/graphics/Bitmap
+   eraseColor(J)V
+   getColor(II)LColor;
+   setColorSpace(LColorSpace;)V
+   wrapHardwareBuffer(LHardwareBuffer;LColorSpace;)LBitmap;
android/graphics/Bitmap$Config
-   ARGB_4444
+android/graphics/BlendMode
+android/graphics/BlendModeColorFilter
android/graphics/Canvas
+   disableZ()V
+   drawColor(ILBlendMode;)V
+   drawColor(J)V
+   drawColor(JLBlendMode;)V
+   drawDoubleRoundRect(LRectF;FFLRectF;FFLPaint;)V
+   drawDoubleRoundRect(LRectF;[FLRectF;[FLPaint;)V
+   drawRenderNode(LRenderNode;)V
+   drawTextRun(LMeasuredText;IIIIFFZLPaint;)V
+   enableZ()V
android/graphics/ComposeShader
+   <init>(LShader;LShader;LBlendMode;)V
-   <init>(LShader;LShader;LXfermode;)V
+android/graphics/HardwareRenderer
+android/graphics/HardwareRenderer$FrameRenderRequest
android/graphics/ImageDecoder
+   createSource(LCallable;)LSource;
+   isMimeTypeSupported(LString;)Z
android/graphics/ImageFormat
+   DEPTH_JPEG
+   HEIC
+   Y8
+android/graphics/Insets
android/graphics/LinearGradient
+   <init>(FFFFJJLTileMode;)V
+   <init>(FFFF[J[FLTileMode;)V
android/graphics/Movie
-   decodeByteArray([BII)LMovie;
-   decodeFile(LString;)LMovie;
-   decodeStream(LInputStream;)LMovie;
-   draw(LCanvas;FF)V
-   draw(LCanvas;FFLPaint;)V
-   duration()I
-   height()I
-   isOpaque()Z
-   setTime(I)Z
-   width()I
android/graphics/Paint
+   CURSOR_AFTER
+   CURSOR_AT
+   CURSOR_AT_OR_AFTER
+   CURSOR_AT_OR_BEFORE
+   CURSOR_BEFORE
+   END_HYPHEN_EDIT_INSERT_ARMENIAN_HYPHEN
+   END_HYPHEN_EDIT_INSERT_HYPHEN
+   END_HYPHEN_EDIT_INSERT_MAQAF
+   END_HYPHEN_EDIT_INSERT_UCAS_HYPHEN
+   END_HYPHEN_EDIT_INSERT_ZWJ_AND_HYPHEN
+   END_HYPHEN_EDIT_NO_EDIT
+   END_HYPHEN_EDIT_REPLACE_WITH_HYPHEN
+   START_HYPHEN_EDIT_INSERT_HYPHEN
+   START_HYPHEN_EDIT_INSERT_ZWJ
+   START_HYPHEN_EDIT_NO_EDIT
+   getBlendMode()LBlendMode;
+   getColorLong()J
+   getEndHyphenEdit()I
+   getShadowLayerColor()I
+   getShadowLayerColorLong()J
+   getShadowLayerDx()F
+   getShadowLayerDy()F
+   getShadowLayerRadius()F
+   getStartHyphenEdit()I
+   getStrikeThruPosition()F
+   getStrikeThruThickness()F
+   getTextBounds(LCharSequence;IILRect;)V
+   getTextRunAdvances([CIIIIZ[FI)F
+   getTextRunCursor(LCharSequence;IIZII)I
+   getTextRunCursor([CIIZII)I
+   getUnderlinePosition()F
+   getUnderlineThickness()F
+   getWordSpacing()F
+   setBlendMode(LBlendMode;)V
+   setColor(J)V
+   setEndHyphenEdit(I)V
+   setShadowLayer(FFFJ)V
+   setStartHyphenEdit(I)V
+   setWordSpacing(F)V
android/graphics/RadialGradient
+   <init>(FFFJJLTileMode;)V
+   <init>(FFF[J[FLTileMode;)V
+android/graphics/RecordingCanvas
+android/graphics/RenderNode
android/graphics/SurfaceTexture$OutOfResourcesException
-   <init>()V
-   <init>(LString;)V
android/graphics/SweepGradient
+   <init>(FFJJ)V
+   <init>(FF[J[F)V
+android/graphics/Typeface$CustomFallbackBuilder
+android/graphics/drawable/ColorStateListDrawable
android/graphics/drawable/Drawable
-   getOpacity()I
+   getOpticalInsets()LInsets;
+   isProjected()Z
-   setColorFilter(ILMode;)V
+   setTintBlendMode(LBlendMode;)V
android/graphics/drawable/GradientDrawable
+   getInnerRadius()I
+   getInnerRadiusRatio()F
+   getThickness()I
+   getThicknessRatio()F
+   setColors([I[F)V
+   setInnerRadius(I)V
+   setInnerRadiusRatio(F)V
+   setPadding(IIII)V
+   setThickness(I)V
+   setThicknessRatio(F)V
android/graphics/drawable/Icon
+   setTintBlendMode(LBlendMode;)LIcon;
android/graphics/drawable/StateListDrawable
+   findStateDrawableIndex([I)I
+   getStateCount()I
+   getStateDrawable(I)LDrawable;
+   getStateSet(I)[I
+android/graphics/fonts/Font
+android/graphics/fonts/Font$Builder
+android/graphics/fonts/FontFamily
+android/graphics/fonts/FontFamily$Builder
+android/graphics/fonts/FontStyle
+android/graphics/fonts/SystemFonts
+android/graphics/text/LineBreaker
+android/graphics/text/LineBreaker$Builder
+android/graphics/text/LineBreaker$ParagraphConstraints
+android/graphics/text/LineBreaker$Result
+android/graphics/text/MeasuredText
+android/graphics/text/MeasuredText$Builder
android/hardware/Camera
-   CAMERA_ERROR_EVICTED
-   CAMERA_ERROR_SERVER_DIED
-   CAMERA_ERROR_UNKNOWN
-   addCallbackBuffer([B)V
-   autoFocus(LAutoFocusCallback;)V
-   cancelAutoFocus()V
-   enableShutterSound(Z)Z
-   getCameraInfo(ILCameraInfo;)V
-   getNumberOfCameras()I
-   getParameters()LParameters;
-   lock()V
-   open()LCamera;
-   open(I)LCamera;
-   reconnect()V
-   release()V
-   setAutoFocusMoveCallback(LAutoFocusMoveCallback;)V
-   setDisplayOrientation(I)V
-   setErrorCallback(LErrorCallback;)V
-   setFaceDetectionListener(LFaceDetectionListener;)V
-   setOneShotPreviewCallback(LPreviewCallback;)V
-   setParameters(LParameters;)V
-   setPreviewCallback(LPreviewCallback;)V
-   setPreviewCallbackWithBuffer(LPreviewCallback;)V
-   setPreviewDisplay(LSurfaceHolder;)V
-   setPreviewTexture(LSurfaceTexture;)V
-   setZoomChangeListener(LOnZoomChangeListener;)V
-   startFaceDetection()V
-   startPreview()V
-   startSmoothZoom(I)V
-   stopFaceDetection()V
-   stopPreview()V
-   stopSmoothZoom()V
-   takePicture(LShutterCallback;LPictureCallback;LPictureCallback;)V
-   takePicture(LShutterCallback;LPictureCallback;LPictureCallback;LPictureCallback;)V
-   unlock()V
android/hardware/Camera$Area
-   rect
-   weight
-   <init>(LRect;I)V
android/hardware/Camera$AutoFocusCallback
-   onAutoFocus(ZLCamera;)V
android/hardware/Camera$AutoFocusMoveCallback
-   onAutoFocusMoving(ZLCamera;)V
android/hardware/Camera$CameraInfo
-   CAMERA_FACING_BACK
-   CAMERA_FACING_FRONT
-   canDisableShutterSound
-   facing
-   orientation
-   <init>()V
android/hardware/Camera$ErrorCallback
-   onError(ILCamera;)V
android/hardware/Camera$Face
-   id
-   leftEye
-   mouth
-   rect
-   rightEye
-   score
-   <init>()V
android/hardware/Camera$FaceDetectionListener
-   onFaceDetection([LFace;LCamera;)V
android/hardware/Camera$OnZoomChangeListener
-   onZoomChange(IZLCamera;)V
android/hardware/Camera$Parameters
-   ANTIBANDING_50HZ
-   ANTIBANDING_60HZ
-   ANTIBANDING_AUTO
-   ANTIBANDING_OFF
-   EFFECT_AQUA
-   EFFECT_BLACKBOARD
-   EFFECT_MONO
-   EFFECT_NEGATIVE
-   EFFECT_NONE
-   EFFECT_POSTERIZE
-   EFFECT_SEPIA
-   EFFECT_SOLARIZE
-   EFFECT_WHITEBOARD
-   FLASH_MODE_AUTO
-   FLASH_MODE_OFF
-   FLASH_MODE_ON
-   FLASH_MODE_RED_EYE
-   FLASH_MODE_TORCH
-   FOCUS_DISTANCE_FAR_INDEX
-   FOCUS_DISTANCE_NEAR_INDEX
-   FOCUS_DISTANCE_OPTIMAL_INDEX
-   FOCUS_MODE_AUTO
-   FOCUS_MODE_CONTINUOUS_PICTURE
-   FOCUS_MODE_CONTINUOUS_VIDEO
-   FOCUS_MODE_EDOF
-   FOCUS_MODE_FIXED
-   FOCUS_MODE_INFINITY
-   FOCUS_MODE_MACRO
-   PREVIEW_FPS_MAX_INDEX
-   PREVIEW_FPS_MIN_INDEX
-   SCENE_MODE_ACTION
-   SCENE_MODE_AUTO
-   SCENE_MODE_BARCODE
-   SCENE_MODE_BEACH
-   SCENE_MODE_CANDLELIGHT
-   SCENE_MODE_FIREWORKS
-   SCENE_MODE_HDR
-   SCENE_MODE_LANDSCAPE
-   SCENE_MODE_NIGHT
-   SCENE_MODE_NIGHT_PORTRAIT
-   SCENE_MODE_PARTY
-   SCENE_MODE_PORTRAIT
-   SCENE_MODE_SNOW
-   SCENE_MODE_SPORTS
-   SCENE_MODE_STEADYPHOTO
-   SCENE_MODE_SUNSET
-   SCENE_MODE_THEATRE
-   WHITE_BALANCE_AUTO
-   WHITE_BALANCE_CLOUDY_DAYLIGHT
-   WHITE_BALANCE_DAYLIGHT
-   WHITE_BALANCE_FLUORESCENT
-   WHITE_BALANCE_INCANDESCENT
-   WHITE_BALANCE_SHADE
-   WHITE_BALANCE_TWILIGHT
-   WHITE_BALANCE_WARM_FLUORESCENT
-   flatten()LString;
-   get(LString;)LString;
-   getAntibanding()LString;
-   getAutoExposureLock()Z
-   getAutoWhiteBalanceLock()Z
-   getColorEffect()LString;
-   getExposureCompensation()I
-   getExposureCompensationStep()F
-   getFlashMode()LString;
-   getFocalLength()F
-   getFocusAreas()LList;
-   getFocusDistances([F)V
-   getFocusMode()LString;
-   getHorizontalViewAngle()F
-   getInt(LString;)I
-   getJpegQuality()I
-   getJpegThumbnailQuality()I
-   getJpegThumbnailSize()LSize;
-   getMaxExposureCompensation()I
-   getMaxNumDetectedFaces()I
-   getMaxNumFocusAreas()I
-   getMaxNumMeteringAreas()I
-   getMaxZoom()I
-   getMeteringAreas()LList;
-   getMinExposureCompensation()I
-   getPictureFormat()I
-   getPictureSize()LSize;
-   getPreferredPreviewSizeForVideo()LSize;
-   getPreviewFormat()I
-   getPreviewFpsRange([I)V
-   getPreviewSize()LSize;
-   getSceneMode()LString;
-   getSupportedAntibanding()LList;
-   getSupportedColorEffects()LList;
-   getSupportedFlashModes()LList;
-   getSupportedFocusModes()LList;
-   getSupportedJpegThumbnailSizes()LList;
-   getSupportedPictureFormats()LList;
-   getSupportedPictureSizes()LList;
-   getSupportedPreviewFormats()LList;
-   getSupportedPreviewFpsRange()LList;
-   getSupportedPreviewSizes()LList;
-   getSupportedSceneModes()LList;
-   getSupportedVideoSizes()LList;
-   getSupportedWhiteBalance()LList;
-   getVerticalViewAngle()F
-   getVideoStabilization()Z
-   getWhiteBalance()LString;
-   getZoom()I
-   getZoomRatios()LList;
-   isAutoExposureLockSupported()Z
-   isAutoWhiteBalanceLockSupported()Z
-   isSmoothZoomSupported()Z
-   isVideoSnapshotSupported()Z
-   isVideoStabilizationSupported()Z
-   isZoomSupported()Z
-   remove(LString;)V
-   removeGpsData()V
-   set(LString;I)V
-   set(LString;LString;)V
-   setAntibanding(LString;)V
-   setAutoExposureLock(Z)V
-   setAutoWhiteBalanceLock(Z)V
-   setColorEffect(LString;)V
-   setExposureCompensation(I)V
-   setFlashMode(LString;)V
-   setFocusAreas(LList;)V
-   setFocusMode(LString;)V
-   setGpsAltitude(D)V
-   setGpsLatitude(D)V
-   setGpsLongitude(D)V
-   setGpsProcessingMethod(LString;)V
-   setGpsTimestamp(J)V
-   setJpegQuality(I)V
-   setJpegThumbnailQuality(I)V
-   setJpegThumbnailSize(II)V
-   setMeteringAreas(LList;)V
-   setPictureFormat(I)V
-   setPictureSize(II)V
-   setPreviewFormat(I)V
-   setPreviewFpsRange(II)V
-   setPreviewSize(II)V
-   setRecordingHint(Z)V
-   setRotation(I)V
-   setSceneMode(LString;)V
-   setVideoStabilization(Z)V
-   setWhiteBalance(LString;)V
-   setZoom(I)V
-   unflatten(LString;)V
android/hardware/Camera$PictureCallback
-   onPictureTaken([BLCamera;)V
android/hardware/Camera$PreviewCallback
-   onPreviewFrame([BLCamera;)V
android/hardware/Camera$ShutterCallback
-   onShutter()V
android/hardware/Camera$Size
-   height
-   width
-   <init>(LCamera;II)V
android/hardware/HardwareBuffer
+   isSupported(IIIIJ)Z
android/hardware/SensorListener
-   onAccuracyChanged(II)V
-   onSensorChanged(I[F)V
+android/hardware/biometrics/BiometricManager
android/hardware/biometrics/BiometricPrompt
+   BIOMETRIC_ERROR_NO_DEVICE_CREDENTIAL
android/hardware/biometrics/BiometricPrompt$Builder
+   setConfirmationRequired(Z)LBuilder;
+   setDeviceCredentialAllowed(Z)LBuilder;
android/hardware/camera2/CameraCharacteristics
+   SCALER_MANDATORY_STREAM_COMBINATIONS
+   getKeysNeedingPermission()LList;
+   getRecommendedStreamConfigurationMap(I)LRecommendedStreamConfigurationMap;
android/hardware/camera2/CameraCharacteristics$Key
+   <init>(LString;LClass;)V
android/hardware/camera2/CameraDevice
+   isSessionConfigurationSupported(LSessionConfiguration;)Z
android/hardware/camera2/CameraManager$AvailabilityCallback
+   onCameraAccessPrioritiesChanged()V
android/hardware/camera2/CameraMetadata
+   REQUEST_AVAILABLE_CAPABILITIES_SECURE_IMAGE_DATA
+   SENSOR_INFO_COLOR_FILTER_ARRANGEMENT_MONO
+   SENSOR_INFO_COLOR_FILTER_ARRANGEMENT_NIR
android/hardware/camera2/CaptureFailure
+   getPhysicalCameraId()LString;
android/hardware/camera2/CaptureRequest$Key
+   <init>(LString;LClass;)V
android/hardware/camera2/CaptureResult
+   LOGICAL_MULTI_CAMERA_ACTIVE_PHYSICAL_ID
android/hardware/camera2/CaptureResult$Key
+   <init>(LString;LClass;)V
+android/hardware/camera2/params/MandatoryStreamCombination
+android/hardware/camera2/params/MandatoryStreamCombination$MandatoryStreamInformation
+android/hardware/camera2/params/RecommendedStreamConfigurationMap
android/hardware/camera2/params/SessionConfiguration
+   CREATOR
android/hardware/fingerprint/FingerprintManager$AuthenticationCallback
-   <init>()V
-   onAuthenticationError(ILCharSequence;)V
-   onAuthenticationFailed()V
-   onAuthenticationHelp(ILCharSequence;)V
-   onAuthenticationSucceeded(LAuthenticationResult;)V
android/hardware/fingerprint/FingerprintManager$AuthenticationResult
-   getCryptoObject()LCryptoObject;
android/hardware/fingerprint/FingerprintManager$CryptoObject
-   <init>(LCipher;)V
-   <init>(LMac;)V
-   <init>(LSignature;)V
-   getCipher()LCipher;
-   getMac()LMac;
-   getSignature()LSignature;
+android/icu/lang/UCharacter$IndicPositionalCategory
+android/icu/lang/UCharacter$IndicSyllabicCategory
android/icu/lang/UCharacter$JoiningGroup
+   HANIFI_ROHINGYA_KINNA_YA
+   HANIFI_ROHINGYA_PA
android/icu/lang/UCharacter$UnicodeBlock
+   CHESS_SYMBOLS
+   CHESS_SYMBOLS_ID
+   DOGRA
+   DOGRA_ID
+   GEORGIAN_EXTENDED
+   GEORGIAN_EXTENDED_ID
+   GUNJALA_GONDI
+   GUNJALA_GONDI_ID
+   HANIFI_ROHINGYA
+   HANIFI_ROHINGYA_ID
+   INDIC_SIYAQ_NUMBERS
+   INDIC_SIYAQ_NUMBERS_ID
+   MAKASAR
+   MAKASAR_ID
+   MAYAN_NUMERALS
+   MAYAN_NUMERALS_ID
+   MEDEFAIDRIN
+   MEDEFAIDRIN_ID
+   OLD_SOGDIAN
+   OLD_SOGDIAN_ID
+   SOGDIAN
+   SOGDIAN_ID
+android/icu/lang/UCharacter$VerticalOrientation
android/icu/lang/UCharacter$WordBreak
+   WSEGSPACE
android/icu/lang/UProperty
+   EXTENDED_PICTOGRAPHIC
+   INDIC_POSITIONAL_CATEGORY
+   INDIC_SYLLABIC_CATEGORY
+   VERTICAL_ORIENTATION
android/icu/lang/UScript
+   DOGRA
+   GUNJALA_GONDI
+   HANIFI_ROHINGYA
+   MAKASAR
+   MEDEFAIDRIN
+   OLD_SOGDIAN
+   SOGDIAN
+android/icu/text/Bidi
+android/icu/text/BidiClassifier
+android/icu/text/BidiRun
android/icu/text/BreakIterator
-   KIND_TITLE
-   getTitleInstance()LBreakIterator;
-   getTitleInstance(LLocale;)LBreakIterator;
-   getTitleInstance(LULocale;)LBreakIterator;
+   setText(LCharSequence;)V
+android/icu/text/CaseMap
+android/icu/text/CaseMap$Fold
+android/icu/text/CaseMap$Lower
+android/icu/text/CaseMap$Title
+android/icu/text/CaseMap$Upper
android/icu/text/DecimalFormatSymbols
+   forNumberingSystem(LLocale;LNumberingSystem;)LDecimalFormatSymbols;
+   forNumberingSystem(LULocale;LNumberingSystem;)LDecimalFormatSymbols;
+android/icu/text/Edits
+android/icu/text/Edits$Iterator
android/icu/text/NumberingSystem
+   LATIN
+android/icu/text/Transliterator
+android/icu/text/Transliterator$Position
android/icu/util/Currency
+   fromJavaCurrency(LCurrency;)LCurrency;
+   toJavaCurrency()LCurrency;
android/icu/util/CurrencyAmount
+   <init>(DLCurrency;)V
+   <init>(LNumber;LCurrency;)V
android/icu/util/JapaneseCalendar
-   CURRENT_ERA
android/icu/util/MeasureUnit
+   POINT
android/icu/util/VersionInfo
+   UNICODE_11_0
android/inputmethodservice/InputMethodService
-   getInputMethodWindowRecommendedHeight()I
-   onViewClicked(Z)V
-android/inputmethodservice/Keyboard
-   EDGE_BOTTOM
-   EDGE_LEFT
-   EDGE_RIGHT
-   EDGE_TOP
-   KEYCODE_ALT
-   KEYCODE_CANCEL
-   KEYCODE_DELETE
-   KEYCODE_DONE
-   KEYCODE_MODE_CHANGE
-   KEYCODE_SHIFT
-   <init>(LContext;I)V
-   <init>(LContext;II)V
-   <init>(LContext;IIII)V
-   <init>(LContext;ILCharSequence;II)V
-   createKeyFromXml(LResources;LRow;IILXmlResourceParser;)LKey;
-   createRowFromXml(LResources;LXmlResourceParser;)LRow;
-   getHeight()I
-   getHorizontalGap()I
-   getKeyHeight()I
-   getKeyWidth()I
-   getKeys()LList;
-   getMinWidth()I
-   getModifierKeys()LList;
-   getNearestKeys(II)[I
-   getShiftKeyIndex()I
-   getVerticalGap()I
-   isShifted()Z
-   setHorizontalGap(I)V
-   setKeyHeight(I)V
-   setKeyWidth(I)V
-   setShifted(Z)Z
-   setVerticalGap(I)V
-android/inputmethodservice/Keyboard$Key
-   codes
-   edgeFlags
-   gap
-   height
-   icon
-   iconPreview
-   label
-   modifier
-   on
-   popupCharacters
-   popupResId
-   pressed
-   repeatable
-   sticky
-   text
-   width
-   x
-   y
-   <init>(LResources;LRow;IILXmlResourceParser;)V
-   <init>(LRow;)V
-   getCurrentDrawableState()[I
-   isInside(II)Z
-   onPressed()V
-   onReleased(Z)V
-   squaredDistanceFrom(II)I
-android/inputmethodservice/Keyboard$Row
-   defaultHeight
-   defaultHorizontalGap
-   defaultWidth
-   mode
-   rowEdgeFlags
-   verticalGap
-   <init>(LKeyboard;)V
-   <init>(LResources;LKeyboard;LXmlResourceParser;)V
-android/inputmethodservice/KeyboardView
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   closing()V
-   getKeyboard()LKeyboard;
-   getOnKeyboardActionListener()LOnKeyboardActionListener;
-   handleBack()Z
-   invalidateAllKeys()V
-   invalidateKey(I)V
-   isPreviewEnabled()Z
-   isProximityCorrectionEnabled()Z
-   isShifted()Z
-   onLongPress(LKey;)Z
-   setKeyboard(LKeyboard;)V
-   setOnKeyboardActionListener(LOnKeyboardActionListener;)V
-   setPopupOffset(II)V
-   setPopupParent(LView;)V
-   setPreviewEnabled(Z)V
-   setProximityCorrectionEnabled(Z)V
-   setShifted(Z)Z
-   setVerticalCorrection(I)V
-   swipeDown()V
-   swipeLeft()V
-   swipeRight()V
-   swipeUp()V
-android/inputmethodservice/KeyboardView$OnKeyboardActionListener
-   onKey(I[I)V
-   onPress(I)V
-   onRelease(I)V
-   onText(LCharSequence;)V
-   swipeDown()V
-   swipeLeft()V
-   swipeRight()V
-   swipeUp()V
android/location/GnssClock
+   getElapsedRealtimeNanos()J
+   getElapsedRealtimeUncertaintyNanos()D
+   hasElapsedRealtimeNanos()Z
+   hasElapsedRealtimeUncertaintyNanos()Z
android/location/GnssMeasurement
+   STATE_2ND_CODE_LOCK
+   getCodeType()LString;
+   hasCodeType()Z
android/location/GnssStatus
+   CONSTELLATION_IRNSS
android/location/GpsSatellite
-   getAzimuth()F
-   getElevation()F
-   getPrn()I
-   getSnr()F
-   hasAlmanac()Z
-   hasEphemeris()Z
-   usedInFix()Z
android/location/GpsStatus
-   GPS_EVENT_FIRST_FIX
-   GPS_EVENT_SATELLITE_STATUS
-   GPS_EVENT_STARTED
-   GPS_EVENT_STOPPED
-   getMaxSatellites()I
-   getSatellites()LIterable;
-   getTimeToFirstFix()I
android/location/GpsStatus$Listener
-   onGpsStatusChanged(I)V
android/location/GpsStatus$NmeaListener
-   onNmeaReceived(JLString;)V
android/location/Location
+   getElapsedRealtimeUncertaintyNanos()D
+   hasElapsedRealtimeUncertaintyNanos()Z
+   setElapsedRealtimeUncertaintyNanos(D)V
android/location/LocationListener
-   onStatusChanged(LString;ILBundle;)V
android/location/LocationManager
+   EXTRA_PROVIDER_NAME
-   KEY_STATUS_CHANGED
-   clearTestProviderEnabled(LString;)V
-   clearTestProviderLocation(LString;)V
-   clearTestProviderStatus(LString;)V
-   setTestProviderStatus(LString;ILBundle;J)V
android/location/LocationProvider
-   AVAILABLE
-   OUT_OF_SERVICE
-   TEMPORARILY_UNAVAILABLE
android/location/SettingInjectorService
+   refreshSettings(LContext;)V
android/media/AudioAttributes
+   ALLOW_CAPTURE_BY_ALL
+   ALLOW_CAPTURE_BY_NONE
+   ALLOW_CAPTURE_BY_SYSTEM
+   areHapticChannelsMuted()Z
+   getAllowedCapturePolicy()I
android/media/AudioAttributes$Builder
+   setAllowedCapturePolicy(I)LBuilder;
+   setHapticChannelsMuted(Z)LBuilder;
android/media/AudioFormat
+   ENCODING_DOLBY_MAT
+   getFrameSizeInBytes()I
android/media/AudioManager
+   ACTION_SPEAKERPHONE_STATE_CHANGED
+   getAllowedCapturePolicy()I
+   isHapticPlaybackSupported()Z
+   isOffloadedPlaybackSupported(LAudioFormat;LAudioAttributes;)Z
+   setAllowedCapturePolicy(I)V
+android/media/AudioPlaybackCaptureConfiguration
+android/media/AudioPlaybackCaptureConfiguration$Builder
android/media/AudioPresentation
+   getPresentationId()I
+   getProgramId()I
+android/media/AudioPresentation$Builder
android/media/AudioRecord$Builder
+   setAudioPlaybackCaptureConfig(LAudioPlaybackCaptureConfiguration;)LBuilder;
android/media/AudioRecord$MetricsConstants
-   LATENCY
android/media/AudioRecord$OnRoutingChangedListener
-   onRoutingChanged(LAudioRecord;)V
android/media/AudioRecordingConfiguration
+   getAudioSource()I
+   getClientEffects()LList;
+   getEffects()LList;
+   isClientSilenced()Z
+android/media/AudioRecordingMonitor
android/media/AudioTrack
+   getAudioAttributes()LAudioAttributes;
+   getOffloadDelay()I
+   getOffloadPadding()I
+   isDirectPlaybackSupported(LAudioFormat;LAudioAttributes;)Z
+   isOffloadedPlayback()Z
+   registerStreamEventCallback(LExecutor;LStreamEventCallback;)V
+   setOffloadDelayPadding(II)V
+   setOffloadEndOfStream()V
+   unregisterStreamEventCallback(LStreamEventCallback;)V
android/media/AudioTrack$Builder
+   setOffloadedPlayback(Z)LBuilder;
android/media/AudioTrack$MetricsConstants
-   CHANNELMASK
-   SAMPLERATE
android/media/AudioTrack$OnRoutingChangedListener
-   onRoutingChanged(LAudioTrack;)V
+android/media/AudioTrack$StreamEventCallback
android/media/ExifInterface
+   TAG_XMP
+   <init>(LFile;)V
+   getAttributeBytes(LString;)[B
+   getAttributeRange(LString;)[J
+   hasAttribute(LString;)Z
android/media/ImageReader
+   newInstance(IIIIJ)LImageReader;
android/media/ImageWriter
+   newInstance(LSurface;II)LImageWriter;
android/media/MediaCas$EventListener
+   onSessionEvent(LMediaCas;LSession;II[B)V
android/media/MediaCas$Session
+   sendSessionEvent(II[B)V
android/media/MediaCodec
+   PARAMETER_KEY_HDR10_PLUS_INFO
+   PARAMETER_KEY_OFFSET_TIME
+   PARAMETER_KEY_SUSPEND_TIME
+   getCanonicalName()LString;
+   setAudioPresentation(LAudioPresentation;)V
android/media/MediaCodec$CryptoException
+   ERROR_FRAME_TOO_LARGE
+   ERROR_INSUFFICIENT_SECURITY
+   ERROR_LOST_STATE
android/media/MediaCodecInfo
+   getCanonicalName()LString;
+   isAlias()Z
+   isHardwareAccelerated()Z
+   isSoftwareOnly()Z
+   isVendor()Z
android/media/MediaCodecInfo$CodecCapabilities
+   FEATURE_DynamicTimestamp
+   FEATURE_FrameParsing
+   FEATURE_MultipleFrames
android/media/MediaCodecInfo$CodecProfileLevel
+   AV1Level2
+   AV1Level21
+   AV1Level22
+   AV1Level23
+   AV1Level3
+   AV1Level31
+   AV1Level32
+   AV1Level33
+   AV1Level4
+   AV1Level41
+   AV1Level42
+   AV1Level43
+   AV1Level5
+   AV1Level51
+   AV1Level52
+   AV1Level53
+   AV1Level6
+   AV1Level61
+   AV1Level62
+   AV1Level63
+   AV1Level7
+   AV1Level71
+   AV1Level72
+   AV1Level73
+   AV1ProfileMain10
+   AV1ProfileMain10HDR10
+   AV1ProfileMain10HDR10Plus
+   AV1ProfileMain8
+   AVCLevel6
+   AVCLevel61
+   AVCLevel62
+   HEVCProfileMain10HDR10Plus
+   VP9Profile2HDR10Plus
+   VP9Profile3HDR10Plus
android/media/MediaCodecInfo$VideoCapabilities
+   getSupportedPerformancePoints()LList;
+android/media/MediaCodecInfo$VideoCapabilities$PerformancePoint
+android/media/MediaController2
+android/media/MediaController2$Builder
+android/media/MediaController2$ControllerCallback
android/media/MediaDrm
+   HDCP_V2_3
+   OFFLINE_LICENSE_STATE_RELEASED
+   OFFLINE_LICENSE_STATE_UNKNOWN
+   OFFLINE_LICENSE_STATE_USABLE
+   clearOnEventListener()V
+   clearOnExpirationUpdateListener()V
+   clearOnKeyStatusChangeListener()V
+   clearOnSessionLostStateListener()V
+   getOfflineLicenseKeySetIds()LList;
+   getOfflineLicenseState([B)I
+   isCryptoSchemeSupported(LUUID;LString;I)Z
+   removeOfflineLicense([B)V
+   setOnEventListener(LExecutor;LOnEventListener;)V
+   setOnEventListener(LOnEventListener;LHandler;)V
+   setOnExpirationUpdateListener(LExecutor;LOnExpirationUpdateListener;)V
+   setOnKeyStatusChangeListener(LExecutor;LOnKeyStatusChangeListener;)V
+   setOnSessionLostStateListener(LExecutor;LOnSessionLostStateListener;)V
+   setOnSessionLostStateListener(LOnSessionLostStateListener;LHandler;)V
-android/media/MediaDrm$HdcpLevel
android/media/MediaDrm$KeyStatus
+   STATUS_USABLE_IN_FUTURE
+android/media/MediaDrm$OnSessionLostStateListener
-android/media/MediaDrm$SecurityLevel
+android/media/MediaDrm$SessionException
android/media/MediaExtractor$CasInfo
+   getPrivateData()[B
android/media/MediaFormat
+   KEY_CREATE_INPUT_SURFACE_SUSPENDED
+   KEY_HAPTIC_CHANNEL_COUNT
+   KEY_HDR10_PLUS_INFO
+   KEY_MAX_B_FRAMES
+   KEY_MAX_FPS_TO_ENCODER
+   KEY_MAX_PTS_GAP_TO_ENCODER
+   KEY_PREPEND_HEADER_TO_SYNC_FRAMES
+   MIMETYPE_AUDIO_AC4
+   MIMETYPE_AUDIO_EAC3_JOC
+   MIMETYPE_VIDEO_AV1
+   TYPE_BYTE_BUFFER
+   TYPE_FLOAT
+   TYPE_INTEGER
+   TYPE_LONG
+   TYPE_NULL
+   TYPE_STRING
+   <init>(LMediaFormat;)V
+   containsFeature(LString;)Z
+   getByteBuffer(LString;LByteBuffer;)LByteBuffer;
+   getFeatures()LSet;
+   getFloat(LString;F)F
+   getInteger(LString;I)I
+   getKeys()LSet;
+   getLong(LString;J)J
+   getNumber(LString;)LNumber;
+   getNumber(LString;LNumber;)LNumber;
+   getString(LString;LString;)LString;
+   getValueTypeForKey(LString;)I
+   removeFeature(LString;)V
+   removeKey(LString;)V
android/media/MediaMetadataEditor
-   BITMAP_KEY_ARTWORK
-   RATING_KEY_BY_OTHERS
-   RATING_KEY_BY_USER
-   addEditableKey(I)V
-   apply()V
-   clear()V
-   getBitmap(ILBitmap;)LBitmap;
-   getEditableKeys()[I
-   getLong(IJ)J
-   getObject(ILObject;)LObject;
-   getString(ILString;)LString;
-   putBitmap(ILBitmap;)LMediaMetadataEditor;
-   putLong(IJ)LMediaMetadataEditor;
-   putObject(ILObject;)LMediaMetadataEditor;
-   putString(ILString;)LMediaMetadataEditor;
-   removeEditableKeys()V
android/media/MediaMetadataRetriever
+   METADATA_KEY_EXIF_LENGTH
+   METADATA_KEY_EXIF_OFFSET
android/media/MediaMuxer$OutputFormat
+   MUXER_OUTPUT_OGG
android/media/MediaRecorder$AudioEncoder
+   OPUS
android/media/MediaRecorder$AudioSource
+   VOICE_PERFORMANCE
android/media/MediaRecorder$OutputFormat
+   OGG
+android/media/MediaSession2
+android/media/MediaSession2$Builder
+android/media/MediaSession2$ControllerInfo
+android/media/MediaSession2$SessionCallback
+android/media/MediaSession2Service
+android/media/MediaSession2Service$MediaNotification
android/media/MediaTimestamp
+   <init>(JJF)V
+   getAnchorSystemNanoTime()J
-   getAnchorSytemNanoTime()J
+android/media/MicrophoneDirection
android/media/RemoteControlClient
-   FLAG_KEY_MEDIA_FAST_FORWARD
-   FLAG_KEY_MEDIA_NEXT
-   FLAG_KEY_MEDIA_PAUSE
-   FLAG_KEY_MEDIA_PLAY
-   FLAG_KEY_MEDIA_PLAY_PAUSE
-   FLAG_KEY_MEDIA_POSITION_UPDATE
-   FLAG_KEY_MEDIA_PREVIOUS
-   FLAG_KEY_MEDIA_RATING
-   FLAG_KEY_MEDIA_REWIND
-   FLAG_KEY_MEDIA_STOP
-   PLAYSTATE_BUFFERING
-   PLAYSTATE_ERROR
-   PLAYSTATE_FAST_FORWARDING
-   PLAYSTATE_PAUSED
-   PLAYSTATE_PLAYING
-   PLAYSTATE_REWINDING
-   PLAYSTATE_SKIPPING_BACKWARDS
-   PLAYSTATE_SKIPPING_FORWARDS
-   PLAYSTATE_STOPPED
-   <init>(LPendingIntent;)V
-   <init>(LPendingIntent;LLooper;)V
-   editMetadata(Z)LMetadataEditor;
-   getMediaSession()LMediaSession;
-   setMetadataUpdateListener(LOnMetadataUpdateListener;)V
-   setOnGetPlaybackPositionListener(LOnGetPlaybackPositionListener;)V
-   setPlaybackPositionUpdateListener(LOnPlaybackPositionUpdateListener;)V
-   setPlaybackState(I)V
-   setPlaybackState(IJF)V
-   setTransportControlFlags(I)V
android/media/RemoteControlClient$MetadataEditor
-   BITMAP_KEY_ARTWORK
-   apply()V
-   clear()V
-   putBitmap(ILBitmap;)LMetadataEditor;
-   putLong(IJ)LMetadataEditor;
-   putObject(ILObject;)LMetadataEditor;
-   putString(ILString;)LMetadataEditor;
-android/media/RemoteControlClient$OnGetPlaybackPositionListener
-   onGetPlaybackPosition()J
-android/media/RemoteControlClient$OnMetadataUpdateListener
-   onMetadataUpdate(ILObject;)V
-android/media/RemoteControlClient$OnPlaybackPositionUpdateListener
-   onPlaybackPositionUpdate(J)V
android/media/RemoteController
-   POSITION_SYNCHRONIZATION_CHECK
-   POSITION_SYNCHRONIZATION_NONE
-   <init>(LContext;LOnClientUpdateListener;)V
-   <init>(LContext;LOnClientUpdateListener;LLooper;)V
-   clearArtworkConfiguration()Z
-   editMetadata()LMetadataEditor;
-   getEstimatedMediaPosition()J
-   seekTo(J)Z
-   sendMediaKeyEvent(LKeyEvent;)Z
-   setArtworkConfiguration(II)Z
-   setSynchronizationMode(I)Z
-android/media/RemoteController$MetadataEditor
-android/media/RemoteController$OnClientUpdateListener
-   onClientChange(Z)V
-   onClientMetadataUpdate(LMetadataEditor;)V
-   onClientPlaybackStateUpdate(I)V
-   onClientPlaybackStateUpdate(IJJF)V
-   onClientTransportControlUpdate(I)V
android/media/RingtoneManager
+   hasHapticChannels(I)Z
+   hasHapticChannels(LUri;)Z
+   openDefaultRingtoneUri(LContext;LUri;)LAssetFileDescriptor;
+android/media/Session2Command
+android/media/Session2Command$Result
+android/media/Session2CommandGroup
+android/media/Session2CommandGroup$Builder
+android/media/Session2Token
android/media/SubtitleData
+   <init>(IJJ[B)V
android/media/ThumbnailUtils
+   createAudioThumbnail(LFile;LSize;LCancellationSignal;)LBitmap;
-+   createAudioThumbnail(LString;I)LBitmap;
+   createImageThumbnail(LFile;LSize;LCancellationSignal;)LBitmap;
-+   createImageThumbnail(LString;I)LBitmap;
+   createVideoThumbnail(LFile;LSize;LCancellationSignal;)LBitmap;
-   createVideoThumbnail(LString;I)LBitmap;
android/media/TimedMetaData
+   <init>(J[B)V
android/media/session/MediaController
+   getSessionInfo()LBundle;
android/media/session/MediaController$PlaybackInfo
+   CREATOR
android/media/session/MediaController$TransportControls
+   setPlaybackSpeed(F)V
android/media/session/MediaSession
+   <init>(LContext;LString;LBundle;)V
android/media/session/MediaSession$Callback
+   onSetPlaybackSpeed(F)V
android/media/session/MediaSessionManager
+   addOnSession2TokensChangedListener(LOnSession2TokensChangedListener;)V
+   addOnSession2TokensChangedListener(LOnSession2TokensChangedListener;LHandler;)V
+   getSession2Tokens()LList;
+   notifySession2Created(LSession2Token;)V
+   removeOnSession2TokensChangedListener(LOnSession2TokensChangedListener;)V
+android/media/session/MediaSessionManager$OnSession2TokensChangedListener
android/media/tv/TvContract$Channels
+   TYPE_ISDB_S3
android/media/tv/TvContract$PreviewPrograms
+   COLUMN_SERIES_ID
android/media/tv/TvContract$Programs
+   COLUMN_SERIES_ID
android/media/tv/TvContract$RecordedPrograms
+   COLUMN_SERIES_ID
android/media/tv/TvContract$WatchNextPrograms
+   COLUMN_SERIES_ID
android/net/ConnectivityManager
-   EXTRA_EXTRA_INFO
-   EXTRA_IS_FAILOVER
-   EXTRA_NETWORK_TYPE
-   EXTRA_OTHER_NETWORK_INFO
+   createSocketKeepalive(LNetwork;LUdpEncapsulationSocket;LInetAddress;LInetAddress;LExecutor;LCallback;)LSocketKeepalive;
-   getActiveNetworkInfo()LNetworkInfo;
+   getConnectionOwnerUid(ILInetSocketAddress;LInetSocketAddress;)I
-   getNetworkInfo(LNetwork;)LNetworkInfo;
android/net/ConnectivityManager$NetworkCallback
+   onBlockedStatusChanged(LNetwork;Z)V
+android/net/DnsResolver
+android/net/DnsResolver$Callback
+android/net/DnsResolver$DnsException
+android/net/InetAddresses
android/net/LinkProperties
+   <init>()V
+   addRoute(LRouteInfo;)Z
+   clear()V
+   getMtu()I
+   setDnsServers(LCollection;)V
+   setDomains(LString;)V
+   setHttpProxy(LProxyInfo;)V
+   setInterfaceName(LString;)V
+   setLinkAddresses(LCollection;)V
+   setMtu(I)V
android/net/NetworkCapabilities
+   NET_CAPABILITY_MCX
+   SIGNAL_STRENGTH_UNSPECIFIED
+   getSignalStrength()I
+   getTransportInfo()LTransportInfo;
-android/net/NetworkInfo
-   CREATOR
-   getDetailedState()LDetailedState;
-   getExtraInfo()LString;
-   getSubtype()I
-   getSubtypeName()LString;
-   isConnected()Z
-android/net/NetworkInfo$DetailedState
-   AUTHENTICATING
-   BLOCKED
-   CAPTIVE_PORTAL_CHECK
-   CONNECTED
-   CONNECTING
-   DISCONNECTED
-   DISCONNECTING
-   FAILED
-   IDLE
-   OBTAINING_IPADDR
-   SCANNING
-   SUSPENDED
-   VERIFYING_POOR_LINK
-android/net/NetworkInfo$State
-   CONNECTED
-   CONNECTING
-   DISCONNECTED
-   DISCONNECTING
-   SUSPENDED
-   UNKNOWN
android/net/NetworkSpecifier
+   <init>()V
android/net/RouteInfo
+   hasGateway()Z
-android/net/SSLCertificateSocketFactory
-   getDefault(I)LSocketFactory;
-   getDefault(ILSSLSessionCache;)LSSLSocketFactory;
-   getInsecure(ILSSLSessionCache;)LSSLSocketFactory;
-   getNpnSelectedProtocol(LSocket;)[B
-   setHostname(LSocket;LString;)V
-   setKeyManagers([LKeyManager;)V
-   setNpnProtocols([[B)V
-   setTrustManagers([LTrustManager;)V
-   setUseSessionTickets(LSocket;Z)V
+android/net/SocketKeepalive
+android/net/SocketKeepalive$Callback
+android/net/TransportInfo
android/net/VpnService
+   isAlwaysOn()Z
+   isLockdownEnabled()Z
android/net/VpnService$Builder
+   setHttpProxy(LProxyInfo;)LBuilder;
+   setMetered(Z)LBuilder;
android/net/http/SslCertificate
+   getX509Certificate()LX509Certificate;
+android/net/ssl/SSLEngines
+android/net/ssl/SSLSockets
-android/net/wifi/WifiConfiguration
-   BSSID
-   FQDN
-   SSID
-   allowedAuthAlgorithms
-   allowedGroupCiphers
-+   allowedGroupManagementCiphers
-   allowedKeyManagement
-   allowedPairwiseCiphers
-   allowedProtocols
-+   allowedSuiteBCiphers
-   enterpriseConfig
-   hiddenSSID
-   isHomeProviderNetwork
-   networkId
-   preSharedKey
-   providerFriendlyName
-   roamingConsortiumIds
-   status
-   <init>()V
-   getHttpProxy()LProxyInfo;
-+   getRandomizedMacAddress()LMacAddress;
-   isPasspoint()Z
-   setHttpProxy(LProxyInfo;)V
-android/net/wifi/WifiConfiguration$AuthAlgorithm
-   LEAP
-   OPEN
-   strings
-   varName
-android/net/wifi/WifiConfiguration$GroupCipher
-   CCMP
-+   GCMP_256
-   TKIP
-   strings
-   varName
-+android/net/wifi/WifiConfiguration$GroupMgmtCipher
-   BIP_CMAC_256
-   BIP_GMAC_128
-   BIP_GMAC_256
-android/net/wifi/WifiConfiguration$KeyMgmt
-   IEEE8021X
-   NONE
-+   OWE
-+   SAE
-+   SUITE_B_192
-   WPA_EAP
-   WPA_PSK
-   strings
-   varName
-android/net/wifi/WifiConfiguration$PairwiseCipher
-   CCMP
-+   GCMP_256
-   NONE
-   strings
-   varName
-android/net/wifi/WifiConfiguration$Protocol
-   RSN
-   strings
-   varName
-android/net/wifi/WifiConfiguration$Status
-   CURRENT
-   DISABLED
-   ENABLED
-   strings
android/net/wifi/WifiInfo
+   LINK_SPEED_UNKNOWN
+   getPasspointFqdn()LString;
+   getPasspointProviderFriendlyName()LString;
+   getRxLinkSpeedMbps()I
+   getTxLinkSpeedMbps()I
android/net/wifi/WifiManager
+   ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTION
+   EXTRA_NETWORK_SUGGESTION
+   STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATE
+   STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APP
+   STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWED
+   STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNAL
+   STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALID
+   STATUS_NETWORK_SUGGESTIONS_SUCCESS
-   WIFI_MODE_FULL
+   WIFI_MODE_FULL_LOW_LATENCY
-   WIFI_MODE_SCAN_ONLY
-   addNetwork(LWifiConfiguration;)I
+   addNetworkSuggestions(LList;)I
-   createWifiLock(LString;)LWifiLock;
-   disableNetwork(I)Z
-   disconnect()Z
-   enableNetwork(IZ)Z
-   getConfiguredNetworks()LList;
+   getMaxNumberOfNetworkSuggestionsPerApp()I
-   getPasspointConfigurations()LList;
-   isDeviceToApRttSupported()Z
+   isEasyConnectSupported()Z
+   isEnhancedOpenSupported()Z
-   isScanAlwaysAvailable()Z
+   isWpa3SaeSupported()Z
+   isWpa3SuiteBSupported()Z
-   reassociate()Z
-   reconnect()Z
-   removeNetwork(I)Z
+   removeNetworkSuggestions(LList;)I
-   removePasspointConfiguration(LString;)V
-   setWifiEnabled(Z)Z
-   updateNetwork(LWifiConfiguration;)I
android/net/wifi/WifiManager$WpsCallback
-   <init>()V
+android/net/wifi/WifiNetworkSpecifier
+android/net/wifi/WifiNetworkSpecifier$Builder
+android/net/wifi/WifiNetworkSuggestion
+android/net/wifi/WifiNetworkSuggestion$Builder
android/net/wifi/aware/DiscoverySession
-   createNetworkSpecifierOpen(LPeerHandle;)LNetworkSpecifier;
-   createNetworkSpecifierPassphrase(LPeerHandle;LString;)LNetworkSpecifier;
+android/net/wifi/aware/ParcelablePeerHandle
+android/net/wifi/aware/WifiAwareNetworkInfo
+android/net/wifi/aware/WifiAwareNetworkSpecifier
+android/net/wifi/aware/WifiAwareNetworkSpecifier$Builder
android/net/wifi/p2p/WifiP2pConfig
+   GROUP_OWNER_BAND_2GHZ
+   GROUP_OWNER_BAND_5GHZ
+   GROUP_OWNER_BAND_AUTO
+android/net/wifi/p2p/WifiP2pConfig$Builder
android/net/wifi/p2p/WifiP2pGroup
+   getFrequency()I
android/net/wifi/p2p/WifiP2pManager
+   createGroup(LChannel;LWifiP2pConfig;LActionListener;)V
+   requestDeviceInfo(LChannel;LDeviceInfoListener;)V
+   requestDiscoveryState(LChannel;LDiscoveryStateListener;)V
+   requestNetworkInfo(LChannel;LNetworkInfoListener;)V
+   requestP2pState(LChannel;LP2pStateListener;)V
+android/net/wifi/p2p/WifiP2pManager$DeviceInfoListener
+android/net/wifi/p2p/WifiP2pManager$DiscoveryStateListener
+android/net/wifi/p2p/WifiP2pManager$NetworkInfoListener
+android/net/wifi/p2p/WifiP2pManager$P2pStateListener
+android/net/wifi/rtt/CivicLocationKeys
android/net/wifi/rtt/RangingResult
+   getUnverifiedResponderLocation()LResponderLocation;
+android/net/wifi/rtt/ResponderLocation
android/nfc/NfcAdapter
-   invokeBeam(LActivity;)Z
-   isNdefPushEnabled()Z
+   isSecureNfcEnabled()Z
+   isSecureNfcSupported()Z
-   setBeamPushUris([LUri;LActivity;)V
-   setBeamPushUrisCallback(LCreateBeamUrisCallback;LActivity;)V
-   setNdefPushMessage(LNdefMessage;LActivity;[LActivity;)V
-   setNdefPushMessageCallback(LCreateNdefMessageCallback;LActivity;[LActivity;)V
-   setOnNdefPushCompleteCallback(LOnNdefPushCompleteCallback;LActivity;[LActivity;)V
-android/nfc/NfcAdapter$CreateBeamUrisCallback
-   createBeamUris(LNfcEvent;)[LUri;
-android/nfc/NfcAdapter$CreateNdefMessageCallback
-   createNdefMessage(LNfcEvent;)LNdefMessage;
-android/nfc/NfcAdapter$OnNdefPushCompleteCallback
-   onNdefPushComplete(LNfcEvent;)V
android/nfc/cardemulation/CardEmulation
+   setOffHostForService(LComponentName;LString;)Z
+   unsetOffHostForService(LComponentName;)Z
+android/opengl/EGL15
+android/opengl/EGLImage
+android/opengl/EGLSync
android/os/Binder
+   <init>(LString;)V
+   clearCallingWorkSource()J
+   getCallingUidOrThrow()I
+   getCallingWorkSourceUid()I
+   restoreCallingWorkSource(J)V
+   setCallingWorkSourceUid(I)J
android/os/Build
+   getFingerprintedPartitions()LList;
+android/os/Build$Partition
android/os/Build$VERSION_CODES
+   Q
android/os/Debug$InstructionCount
-   <init>()V
-   collect()Z
-   globalMethodInvocations()I
-   globalTotal()I
-   resetAndStart()Z
android/os/DropBoxManager
+   EXTRA_DROPPED_COUNT
android/os/Environment
+   DIRECTORY_AUDIOBOOKS
+   DIRECTORY_SCREENSHOTS
-   getExternalStorageDirectory()LFile;
-   getExternalStoragePublicDirectory(LString;)LFile;
+   isExternalStorageLegacy()Z
+   isExternalStorageLegacy(LFile;)Z
android/os/FileObserver
+   <init>(LFile;)V
+   <init>(LFile;I)V
+   <init>(LList;)V
+   <init>(LList;I)V
-   <init>(LString;)V
-   <init>(LString;I)V
+android/os/FileUtils
+android/os/FileUtils$ProgressListener
android/os/Handler
+   hasCallbacks(LRunnable;)Z
android/os/LocaleList
+   isPseudoLocale(LULocale;)Z
android/os/Parcel
+   createTypedArrayMap(LCreator;)LArrayMap;
+   createTypedSparseArray(LCreator;)LSparseArray;
+   readBoolean()Z
+   readParcelableList(LList;LClassLoader;)LList;
+   writeBoolean(Z)V
+   writeParcelableList(LList;I)V
+   writeTypedArrayMap(LArrayMap;I)V
+   writeTypedSparseArray(LSparseArray;I)V
android/os/PowerManager
+   LOCATION_MODE_THROTTLE_REQUESTS_WHEN_SCREEN_OFF
+   THERMAL_STATUS_CRITICAL
+   THERMAL_STATUS_EMERGENCY
+   THERMAL_STATUS_LIGHT
+   THERMAL_STATUS_MODERATE
+   THERMAL_STATUS_NONE
+   THERMAL_STATUS_SEVERE
+   THERMAL_STATUS_SHUTDOWN
+   addThermalStatusListener(LExecutor;LOnThermalStatusChangedListener;)V
+   addThermalStatusListener(LOnThermalStatusChangedListener;)V
+   getCurrentThermalStatus()I
+   removeThermalStatusListener(LOnThermalStatusChangedListener;)V
+android/os/PowerManager$OnThermalStatusChangedListener
android/os/Process
+   BLUETOOTH_UID
+   INVALID_UID
+   ROOT_UID
+   SHELL_UID
android/os/StrictMode$VmPolicy$Builder
+   detectCredentialProtectedWhileLocked()Landroid/os/StrictMode$VmPolicy$Builder;
+   detectImplicitDirectBoot()Landroid/os/StrictMode$VmPolicy$Builder;
android/os/SystemClock
+   currentGnssTimeClock()LClock;
android/os/Trace
+   beginAsyncSection(LString;I)V
+   endAsyncSection(LString;I)V
+   isEnabled()Z
+   setCounter(LString;J)V
android/os/UserManager
+   DISALLOW_CONFIG_PRIVATE_DNS
+   DISALLOW_CONTENT_CAPTURE
+   DISALLOW_CONTENT_SUGGESTIONS
+   DISALLOW_INSTALL_UNKNOWN_SOURCES_GLOBALLY
android/os/VibrationEffect
+   EFFECT_CLICK
+   EFFECT_DOUBLE_CLICK
+   EFFECT_HEAVY_CLICK
+   EFFECT_TICK
+   createPredefined(I)LVibrationEffect;
android/os/storage/StorageManager
+   getStorageVolume(LUri;)LStorageVolume;
android/os/storage/StorageVolume
-   createAccessIntent(LString;)LIntent;
+   createOpenDocumentTreeIntent()LIntent;
+android/os/strictmode/CredentialProtectedWhileLockedViolation
+android/os/strictmode/ImplicitDirectBootViolation
-android/preference/CheckBoxPreference
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-android/preference/DialogPreference
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   getDialog()LDialog;
-   getDialogIcon()LDrawable;
-   getDialogLayoutResource()I
-   getDialogMessage()LCharSequence;
-   getDialogTitle()LCharSequence;
-   getNegativeButtonText()LCharSequence;
-   getPositiveButtonText()LCharSequence;
-   onBindDialogView(LView;)V
-   onCreateDialogView()LView;
-   onDialogClosed(Z)V
-   onPrepareDialogBuilder(LBuilder;)V
-   setDialogIcon(I)V
-   setDialogIcon(LDrawable;)V
-   setDialogLayoutResource(I)V
-   setDialogMessage(I)V
-   setDialogMessage(LCharSequence;)V
-   setDialogTitle(I)V
-   setDialogTitle(LCharSequence;)V
-   setNegativeButtonText(I)V
-   setNegativeButtonText(LCharSequence;)V
-   setPositiveButtonText(I)V
-   setPositiveButtonText(LCharSequence;)V
-   showDialog(LBundle;)V
-android/preference/EditTextPreference
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   getEditText()LEditText;
-   getText()LString;
-   onAddEditTextToDialogView(LView;LEditText;)V
-   setText(LString;)V
-android/preference/ListPreference
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   findIndexOfValue(LString;)I
-   getEntries()[LCharSequence;
-   getEntry()LCharSequence;
-   getEntryValues()[LCharSequence;
-   getValue()LString;
-   setEntries(I)V
-   setEntries([LCharSequence;)V
-   setEntryValues(I)V
-   setEntryValues([LCharSequence;)V
-   setValue(LString;)V
-   setValueIndex(I)V
-android/preference/MultiSelectListPreference
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   findIndexOfValue(LString;)I
-   getEntries()[LCharSequence;
-   getEntryValues()[LCharSequence;
-   getValues()LSet;
-   setEntries(I)V
-   setEntries([LCharSequence;)V
-   setEntryValues(I)V
-   setEntryValues([LCharSequence;)V
-   setValues(LSet;)V
-android/preference/Preference
-   DEFAULT_ORDER
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   callChangeListener(LObject;)Z
-   compareTo(LPreference;)I
-   findPreferenceInHierarchy(LString;)LPreference;
-   getContext()LContext;
-   getDependency()LString;
-   getEditor()LEditor;
-   getExtras()LBundle;
-   getFragment()LString;
-   getIcon()LDrawable;
-   getIntent()LIntent;
-   getKey()LString;
-   getLayoutResource()I
-   getOnPreferenceChangeListener()LOnPreferenceChangeListener;
-   getOnPreferenceClickListener()LOnPreferenceClickListener;
-   getOrder()I
-   getParent()LPreferenceGroup;
-   getPersistedBoolean(Z)Z
-   getPersistedFloat(F)F
-   getPersistedInt(I)I
-   getPersistedLong(J)J
-   getPersistedString(LString;)LString;
-   getPersistedStringSet(LSet;)LSet;
-   getPreferenceDataStore()LPreferenceDataStore;
-   getPreferenceManager()LPreferenceManager;
-   getSharedPreferences()LSharedPreferences;
-   getShouldDisableView()Z
-   getSummary()LCharSequence;
-   getTitle()LCharSequence;
-   getTitleRes()I
-   getView(LView;LViewGroup;)LView;
-   getWidgetLayoutResource()I
-   hasKey()Z
-   isEnabled()Z
-   isIconSpaceReserved()Z
-   isPersistent()Z
-   isRecycleEnabled()Z
-   isSelectable()Z
-   isSingleLineTitle()Z
-   notifyChanged()V
-   notifyDependencyChange(Z)V
-   notifyHierarchyChanged()V
-   onAttachedToActivity()V
-   onAttachedToHierarchy(LPreferenceManager;)V
-   onBindView(LView;)V
-   onClick()V
-   onCreateView(LViewGroup;)LView;
-   onDependencyChanged(LPreference;Z)V
-   onGetDefaultValue(LTypedArray;I)LObject;
-   onParentChanged(LPreference;Z)V
-   onPrepareForRemoval()V
-   onRestoreInstanceState(LParcelable;)V
-   onSaveInstanceState()LParcelable;
-   onSetInitialValue(ZLObject;)V
-   peekExtras()LBundle;
-   persistBoolean(Z)Z
-   persistFloat(F)Z
-   persistInt(I)Z
-   persistLong(J)Z
-   persistString(LString;)Z
-   persistStringSet(LSet;)Z
-   restoreHierarchyState(LBundle;)V
-   saveHierarchyState(LBundle;)V
-   setDefaultValue(LObject;)V
-   setDependency(LString;)V
-   setEnabled(Z)V
-   setFragment(LString;)V
-   setIcon(I)V
-   setIcon(LDrawable;)V
-   setIconSpaceReserved(Z)V
-   setIntent(LIntent;)V
-   setKey(LString;)V
-   setLayoutResource(I)V
-   setOnPreferenceChangeListener(LOnPreferenceChangeListener;)V
-   setOnPreferenceClickListener(LOnPreferenceClickListener;)V
-   setOrder(I)V
-   setPersistent(Z)V
-   setPreferenceDataStore(LPreferenceDataStore;)V
-   setRecycleEnabled(Z)V
-   setSelectable(Z)V
-   setShouldDisableView(Z)V
-   setSingleLineTitle(Z)V
-   setSummary(I)V
-   setSummary(LCharSequence;)V
-   setTitle(I)V
-   setTitle(LCharSequence;)V
-   setWidgetLayoutResource(I)V
-   shouldCommit()Z
-   shouldDisableDependents()Z
-   shouldPersist()Z
-android/preference/Preference$BaseSavedState
-   CREATOR
-   <init>(LParcel;)V
-   <init>(LParcelable;)V
-android/preference/Preference$OnPreferenceChangeListener
-   onPreferenceChange(LPreference;LObject;)Z
-android/preference/Preference$OnPreferenceClickListener
-   onPreferenceClick(LPreference;)Z
-android/preference/PreferenceActivity
-   EXTRA_NO_HEADERS
-   EXTRA_SHOW_FRAGMENT
-   EXTRA_SHOW_FRAGMENT_ARGUMENTS
-   EXTRA_SHOW_FRAGMENT_SHORT_TITLE
-   EXTRA_SHOW_FRAGMENT_TITLE
-   HEADER_ID_UNDEFINED
-   <init>()V
-   finishPreferencePanel(LFragment;ILIntent;)V
-   hasHeaders()Z
-   invalidateHeaders()V
-   isMultiPane()Z
-   isValidFragment(LString;)Z
-   loadHeadersFromResource(ILList;)V
-   onBuildHeaders(LList;)V
-   onBuildStartFragmentIntent(LString;LBundle;II)LIntent;
-   onGetInitialHeader()LHeader;
-   onGetNewHeader()LHeader;
-   onHeaderClick(LHeader;I)V
-   onIsHidingHeaders()Z
-   onIsMultiPane()Z
-   setListFooter(LView;)V
-   setParentTitle(LCharSequence;LCharSequence;LOnClickListener;)V
-   showBreadCrumbs(LCharSequence;LCharSequence;)V
-   startPreferenceFragment(LFragment;Z)V
-   startPreferencePanel(LString;LBundle;ILCharSequence;LFragment;I)V
-   startWithFragment(LString;LBundle;LFragment;I)V
-   startWithFragment(LString;LBundle;LFragment;III)V
-   switchToHeader(LHeader;)V
-   switchToHeader(LString;LBundle;)V
-android/preference/PreferenceActivity$Header
-   CREATOR
-   breadCrumbShortTitle
-   breadCrumbShortTitleRes
-   breadCrumbTitle
-   breadCrumbTitleRes
-   extras
-   fragment
-   fragmentArguments
-   iconRes
-   id
-   intent
-   summary
-   summaryRes
-   title
-   titleRes
-   <init>()V
-   getBreadCrumbShortTitle(LResources;)LCharSequence;
-   getBreadCrumbTitle(LResources;)LCharSequence;
-   getSummary(LResources;)LCharSequence;
-   getTitle(LResources;)LCharSequence;
-   readFromParcel(LParcel;)V
-android/preference/PreferenceCategory
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-android/preference/PreferenceDataStore
-   getBoolean(LString;Z)Z
-   getFloat(LString;F)F
-   getInt(LString;I)I
-   getLong(LString;J)J
-   getString(LString;LString;)LString;
-   getStringSet(LString;LSet;)LSet;
-   putBoolean(LString;Z)V
-   putFloat(LString;F)V
-   putInt(LString;I)V
-   putLong(LString;J)V
-   putString(LString;LString;)V
-   putStringSet(LString;LSet;)V
android/preference/PreferenceFragment
-   <init>()V
-   addPreferencesFromIntent(LIntent;)V
-   addPreferencesFromResource(I)V
-   findPreference(LCharSequence;)LPreference;
-   getPreferenceManager()LPreferenceManager;
-   getPreferenceScreen()LPreferenceScreen;
-   onPreferenceTreeClick(LPreferenceScreen;LPreference;)Z
-   setPreferenceScreen(LPreferenceScreen;)V
android/preference/PreferenceFragment$OnPreferenceStartFragmentCallback
-   onPreferenceStartFragment(LPreferenceFragment;LPreference;)Z
-android/preference/PreferenceGroup
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   addItemFromInflater(LPreference;)V
-   addPreference(LPreference;)Z
-   dispatchRestoreInstanceState(LBundle;)V
-   dispatchSaveInstanceState(LBundle;)V
-   findPreference(LCharSequence;)LPreference;
-   getPreference(I)LPreference;
-   getPreferenceCount()I
-   isOnSameScreenAsChildren()Z
-   isOrderingAsAdded()Z
-   onPrepareAddPreference(LPreference;)Z
-   removeAll()V
-   removePreference(LPreference;)Z
-   setOrderingAsAdded(Z)V
-android/preference/PreferenceManager
-   KEY_HAS_SET_DEFAULT_VALUES
-   METADATA_KEY_PREFERENCES
-   createPreferenceScreen(LContext;)LPreferenceScreen;
-   findPreference(LCharSequence;)LPreference;
-   getDefaultSharedPreferences(LContext;)LSharedPreferences;
-   getDefaultSharedPreferencesName(LContext;)LString;
-   getPreferenceDataStore()LPreferenceDataStore;
-   getSharedPreferences()LSharedPreferences;
-   getSharedPreferencesMode()I
-   getSharedPreferencesName()LString;
-   isStorageDefault()Z
-   isStorageDeviceProtected()Z
-   setDefaultValues(LContext;IZ)V
-   setDefaultValues(LContext;LString;IIZ)V
-   setPreferenceDataStore(LPreferenceDataStore;)V
-   setSharedPreferencesMode(I)V
-   setSharedPreferencesName(LString;)V
-   setStorageDefault()V
-   setStorageDeviceProtected()V
-android/preference/PreferenceManager$OnActivityDestroyListener
-   onActivityDestroy()V
-android/preference/PreferenceManager$OnActivityResultListener
-   onActivityResult(IILIntent;)Z
-android/preference/PreferenceManager$OnActivityStopListener
-   onActivityStop()V
-android/preference/PreferenceScreen
-   bind(LListView;)V
-   getDialog()LDialog;
-   getRootAdapter()LListAdapter;
-   onCreateRootAdapter()LListAdapter;
-android/preference/RingtonePreference
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   getRingtoneType()I
-   getShowDefault()Z
-   getShowSilent()Z
-   onPrepareRingtonePickerIntent(LIntent;)V
-   onRestoreRingtone()LUri;
-   onSaveRingtone(LUri;)V
-   setRingtoneType(I)V
-   setShowDefault(Z)V
-   setShowSilent(Z)V
-android/preference/SwitchPreference
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   getSwitchTextOff()LCharSequence;
-   getSwitchTextOn()LCharSequence;
-   setSwitchTextOff(I)V
-   setSwitchTextOff(LCharSequence;)V
-   setSwitchTextOn(I)V
-   setSwitchTextOn(LCharSequence;)V
-android/preference/TwoStatePreference
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   getDisableDependentsState()Z
-   getSummaryOff()LCharSequence;
-   getSummaryOn()LCharSequence;
-   isChecked()Z
-   setChecked(Z)V
-   setDisableDependentsState(Z)V
-   setSummaryOff(I)V
-   setSummaryOff(LCharSequence;)V
-   setSummaryOn(I)V
-   setSummaryOn(LCharSequence;)V
android/provider/CalendarContract
+   ACTION_VIEW_MANAGED_PROFILE_CALENDAR_EVENT
+   EXTRA_EVENT_ID
+   startViewCalendarEventInManagedProfile(LContext;JJJZI)Z
android/provider/CalendarContract$Calendars
+   ENTERPRISE_CONTENT_URI
android/provider/CalendarContract$Events
+   ENTERPRISE_CONTENT_URI
android/provider/CalendarContract$Instances
+   ENTERPRISE_CONTENT_BY_DAY_URI
+   ENTERPRISE_CONTENT_SEARCH_BY_DAY_URI
+   ENTERPRISE_CONTENT_SEARCH_URI
+   ENTERPRISE_CONTENT_URI
android/provider/CallLog$Calls
+   BLOCK_REASON
+   BLOCK_REASON_BLOCKED_NUMBER
+   BLOCK_REASON_CALL_SCREENING_SERVICE
+   BLOCK_REASON_DIRECT_TO_VOICEMAIL
+   BLOCK_REASON_NOT_BLOCKED
+   BLOCK_REASON_NOT_IN_CONTACTS
+   BLOCK_REASON_PAY_PHONE
+   BLOCK_REASON_RESTRICTED_NUMBER
+   BLOCK_REASON_UNKNOWN_NUMBER
+   CALL_SCREENING_APP_NAME
+   CALL_SCREENING_COMPONENT_NAME
android/provider/Contacts$PresenceColumns
-   AVAILABLE
-   AWAY
-   DO_NOT_DISTURB
-   IDLE
-   INVISIBLE
-   OFFLINE
-   PRESENCE_CUSTOM_STATUS
-   PRESENCE_STATUS
-   PRIORITY
android/provider/ContactsContract$ContactOptionsColumns
-   LAST_TIME_CONTACTED
-   TIMES_CONTACTED
android/provider/ContactsContract$Contacts
-   CONTENT_FREQUENT_URI
-android/provider/ContactsContract$DataUsageFeedback
-   DELETE_USAGE_URI
-   FEEDBACK_URI
-   USAGE_TYPE
-   USAGE_TYPE_CALL
-   USAGE_TYPE_LONG_TEXT
-   USAGE_TYPE_SHORT_TEXT
-   <init>()V
android/provider/ContactsContract$DataUsageStatColumns
-   LAST_TIME_USED
-   TIMES_USED
android/provider/ContactsContract$Presence
-   <init>()V
android/provider/DocumentsContract
+   METADATA_EXIF
+   METADATA_TREE_COUNT
+   METADATA_TREE_SIZE
+   METADATA_TYPES
+   QUERY_ARG_DISPLAY_NAME
+   QUERY_ARG_EXCLUDE_MEDIA
+   QUERY_ARG_FILE_SIZE_OVER
+   QUERY_ARG_LAST_MODIFIED_AFTER
+   QUERY_ARG_MIME_TYPES
+   getDocumentMetadata(LContentResolver;LUri;)LBundle;
+   isChildDocument(LContentResolver;LUri;LUri;)Z
+   isRootUri(LContext;LUri;)Z
+   isRootsUri(LContext;LUri;)Z
android/provider/DocumentsContract$Document
+   FLAG_PARTIAL
+   FLAG_SUPPORTS_METADATA
android/provider/DocumentsContract$Root
+   COLUMN_QUERY_ARGS
+   FLAG_EMPTY
android/provider/DocumentsProvider
+   getDocumentMetadata(LString;)LBundle;
+   queryRecentDocuments(LString;[LString;LBundle;LCancellationSignal;)LCursor;
+   querySearchDocuments(LString;[LString;LBundle;)LCursor;
android/provider/LiveFolders
-   ACTION_CREATE_LIVE_FOLDER
-   DESCRIPTION
-   DISPLAY_MODE_GRID
-   DISPLAY_MODE_LIST
-   EXTRA_LIVE_FOLDER_BASE_INTENT
-   EXTRA_LIVE_FOLDER_DISPLAY_MODE
-   EXTRA_LIVE_FOLDER_ICON
-   EXTRA_LIVE_FOLDER_NAME
-   ICON_BITMAP
-   ICON_PACKAGE
-   ICON_RESOURCE
-   INTENT
-   NAME
android/provider/MediaStore
+   ACTION_REVIEW
+   ACTION_REVIEW_SECURE
+   AUTHORITY_URI
+   EXTRA_BRIGHTNESS
+   VOLUME_EXTERNAL
+   VOLUME_EXTERNAL_PRIMARY
+   VOLUME_INTERNAL
+   getExternalVolumeNames(LContext;)LSet;
+   getMediaUri(LContext;LUri;)LUri;
+   getVersion(LContext;LString;)LString;
+   getVolumeName(LUri;)LString;
+   setIncludePending(LUri;)LUri;
+   setRequireOriginal(LUri;)LUri;
android/provider/MediaStore$Audio$AlbumColumns
-   ALBUM_ART
+   ARTIST_ID
android/provider/MediaStore$Audio$AudioColumns
+   IS_AUDIOBOOK
android/provider/MediaStore$Audio$Media
-   getContentUriForPath(LString;)LUri;
android/provider/MediaStore$Audio$PlaylistsColumns
-   DATA
+android/provider/MediaStore$DownloadColumns
+android/provider/MediaStore$Downloads
android/provider/MediaStore$Images$ImageColumns
-   LATITUDE
-   LONGITUDE
-   MINI_THUMB_MAGIC
-   PICASA_ID
android/provider/MediaStore$Images$Media
-   getBitmap(LContentResolver;LUri;)LBitmap;
-   insertImage(LContentResolver;LBitmap;LString;LString;)LString;
-   insertImage(LContentResolver;LString;LString;LString;)LString;
-   query(LContentResolver;LUri;[LString;)LCursor;
-   query(LContentResolver;LUri;[LString;LString;LString;)LCursor;
-   query(LContentResolver;LUri;[LString;LString;[LString;LString;)LCursor;
-android/provider/MediaStore$Images$Thumbnails
-   DATA
-   DEFAULT_SORT_ORDER
-   EXTERNAL_CONTENT_URI
-   FULL_SCREEN_KIND
-   HEIGHT
-   IMAGE_ID
-   INTERNAL_CONTENT_URI
-   KIND
-   MICRO_KIND
-   MINI_KIND
-   THUMB_DATA
-   WIDTH
-   <init>()V
-   cancelThumbnailRequest(LContentResolver;J)V
-   cancelThumbnailRequest(LContentResolver;JJ)V
-   getContentUri(LString;)LUri;
-   getThumbnail(LContentResolver;JILOptions;)LBitmap;
-   getThumbnail(LContentResolver;JJILOptions;)LBitmap;
-   query(LContentResolver;LUri;[LString;)LCursor;
-   queryMiniThumbnail(LContentResolver;JI[LString;)LCursor;
-   queryMiniThumbnails(LContentResolver;LUri;I[LString;)LCursor;
android/provider/MediaStore$MediaColumns
+   BUCKET_DISPLAY_NAME
+   BUCKET_ID
-   DATA
+   DATE_EXPIRES
+   DATE_TAKEN
+   DOCUMENT_ID
+   DURATION
+   INSTANCE_ID
+   IS_PENDING
+   ORIENTATION
+   ORIGINAL_DOCUMENT_ID
+   OWNER_PACKAGE_NAME
+   RELATIVE_PATH
+   VOLUME_NAME
android/provider/MediaStore$Video
-   query(LContentResolver;LUri;[LString;)LCursor;
-android/provider/MediaStore$Video$Thumbnails
-   DATA
-   DEFAULT_SORT_ORDER
-   EXTERNAL_CONTENT_URI
-   FULL_SCREEN_KIND
-   HEIGHT
-   INTERNAL_CONTENT_URI
-   KIND
-   MICRO_KIND
-   MINI_KIND
-   VIDEO_ID
-   WIDTH
-   <init>()V
-   cancelThumbnailRequest(LContentResolver;J)V
-   cancelThumbnailRequest(LContentResolver;JJ)V
-   getContentUri(LString;)LUri;
-   getThumbnail(LContentResolver;JILOptions;)LBitmap;
-   getThumbnail(LContentResolver;JJILOptions;)LBitmap;
android/provider/MediaStore$Video$VideoColumns
-   LATITUDE
-   LONGITUDE
-   MINI_THUMB_MAGIC
android/provider/Settings
+   ACTION_APP_NOTIFICATION_BUBBLE_SETTINGS
+   ACTION_APP_SEARCH_SETTINGS
+   ACTION_APP_USAGE_SETTINGS
+   ACTION_NOTIFICATION_ASSISTANT_SETTINGS
+   ACTION_PROCESS_WIFI_EASY_CONNECT_URI
-   ACTION_STORAGE_VOLUME_ACCESS_SETTINGS
android/provider/Settings$Global
+   APPLY_RAMPING_RINGER
+android/provider/Settings$Panel
android/provider/Telephony$CarrierId
+   SPECIFIC_CARRIER_ID
+   SPECIFIC_CARRIER_ID_NAME
+   getSpecificCarrierIdUriForSubscriptionId(I)LUri;
android/provider/Telephony$Carriers
+   CARRIER_ID
-   MCC
-   MNC
-   MVNO_MATCH_DATA
-   MVNO_TYPE
-   NUMERIC
+   SIM_APN_URI
android/provider/Telephony$Mms$Part
+   CONTENT_URI
android/provider/Telephony$Sms$Intents
-   SECRET_CODE_ACTION
android/renderscript/ScriptGroup$Builder
-   <init>(LRenderScript;)V
-   addConnection(LType;LKernelID;LFieldID;)LBuilder;
-   addConnection(LType;LKernelID;LKernelID;)LBuilder;
-   addKernel(LKernelID;)LBuilder;
-   create()LScriptGroup;
android/renderscript/Type$CubemapFace
-   POSITVE_X
-   POSITVE_Y
-   POSITVE_Z
android/security/KeyPairGeneratorSpec
-   getAlgorithmParameterSpec()LAlgorithmParameterSpec;
-   getContext()LContext;
-   getEndDate()LDate;
-   getKeySize()I
-   getKeyType()LString;
-   getKeystoreAlias()LString;
-   getSerialNumber()LBigInteger;
-   getStartDate()LDate;
-   getSubjectDN()LX500Principal;
-   isEncryptionRequired()Z
android/security/KeyPairGeneratorSpec$Builder
-   <init>(LContext;)V
-   build()LKeyPairGeneratorSpec;
-   setAlgorithmParameterSpec(LAlgorithmParameterSpec;)LBuilder;
-   setAlias(LString;)LBuilder;
-   setEncryptionRequired()LBuilder;
-   setEndDate(LDate;)LBuilder;
-   setKeySize(I)LBuilder;
-   setKeyType(LString;)LBuilder;
-   setSerialNumber(LBigInteger;)LBuilder;
-   setStartDate(LDate;)LBuilder;
-   setSubject(LX500Principal;)LBuilder;
android/security/KeyStoreParameter
-   isEncryptionRequired()Z
android/security/KeyStoreParameter$Builder
-   <init>(LContext;)V
-   build()LKeyStoreParameter;
-   setEncryptionRequired(Z)LBuilder;
android/service/autofill/CustomDescription$Builder
+   addOnClickAction(ILOnClickAction;)LBuilder;
android/service/autofill/FillContext
+   getFocusedId()LAutofillId;
android/service/autofill/FillRequest
+   FLAG_COMPATIBILITY_MODE_REQUEST
android/service/autofill/FillResponse$Builder
+   setUserData(LUserData;)LBuilder;
+android/service/autofill/OnClickAction
android/service/autofill/SaveInfo
+   FLAG_DELAY_SAVE
android/service/autofill/UserData
+   getFieldClassificationAlgorithmForCategory(LString;)LString;
android/service/autofill/UserData$Builder
+   setFieldClassificationAlgorithmForCategory(LString;LString;LBundle;)LBuilder;
+android/service/autofill/VisibilitySetterAction
+android/service/autofill/VisibilitySetterAction$Builder
android/service/carrier/CarrierIdentifier
+   <init>(LString;LString;LString;LString;LString;LString;II)V
+   getCarrierId()I
+   getSpecificCarrierId()I
+android/service/carrier/CarrierMessagingClientService
-android/service/notification/ConditionProviderService
-   EXTRA_RULE_ID
-   META_DATA_CONFIGURATION_ACTIVITY
-   META_DATA_RULE_INSTANCE_LIMIT
-   META_DATA_RULE_TYPE
-   SERVICE_INTERFACE
-   <init>()V
-   notifyCondition(LCondition;)V
-   notifyConditions([LCondition;)V
-   onConnected()V
-   onRequestConditions(I)V
-   onSubscribe(LUri;)V
-   onUnsubscribe(LUri;)V
-   requestRebind(LComponentName;)V
-   requestUnbind()V
android/service/notification/NotificationListenerService
+   clearRequestedListenerHints()V
+   onSilentStatusBarIconsVisibilityChanged(Z)V
android/service/notification/NotificationListenerService$Ranking
+   canBubble()Z
+   getLastAudiblyAlertedMillis()J
+   getSmartActions()LList;
+   getSmartReplies()LList;
android/service/notification/StatusBarNotification
+   getOpPkg()LString;
+   getUid()I
+android/service/notification/ZenPolicy
+android/service/notification/ZenPolicy$Builder
android/service/quicksettings/Tile
+   getSubtitle()LCharSequence;
+   setSubtitle(LCharSequence;)V
android/service/voice/VoiceInteractionService
+   onGetSupportedVoiceActions(LSet;)LSet;
+   setUiHints(LBundle;)V
android/service/voice/VoiceInteractionSession
+   SHOW_SOURCE_AUTOMOTIVE_SYSTEM_UI
+   SHOW_SOURCE_NOTIFICATION
+   SHOW_SOURCE_PUSH_TO_TALK
+   onDirectActionsInvalidated(LActivityId;)V
+   onHandleAssist(LAssistState;)V
-   onHandleAssist(LBundle;LAssistStructure;LAssistContent;)V
-   onHandleAssistSecondary(LBundle;LAssistStructure;LAssistContent;II)V
+   performDirectAction(LDirectAction;LBundle;LCancellationSignal;LExecutor;LConsumer;)V
+   requestDirectActions(LActivityId;LCancellationSignal;LExecutor;LConsumer;)V
+android/service/voice/VoiceInteractionSession$ActivityId
+android/service/voice/VoiceInteractionSession$AssistState
android/service/wallpaper/WallpaperService$Engine
+   getDisplayContext()LContext;
android/speech/tts/TextToSpeech$OnUtteranceCompletedListener
-   onUtteranceCompleted(LString;)V
android/system/Os
+   bind(LFileDescriptor;LSocketAddress;)V
+   connect(LFileDescriptor;LSocketAddress;)V
+   getsockoptTimeval(LFileDescriptor;II)LStructTimeval;
+   sendto(LFileDescriptor;[BIIILSocketAddress;)I
-   setegid(I)V
-   seteuid(I)V
-   setgid(I)V
+   setsockoptTimeval(LFileDescriptor;IILStructTimeval;)V
-   setuid(I)V
android/system/OsConstants
+   AF_NETLINK
+   AF_PACKET
+   ARPHRD_ETHER
+   ETH_P_ALL
+   ETH_P_ARP
+   ETH_P_IP
+   ETH_P_IPV6
+   ICMP6_ECHO_REPLY
+   ICMP6_ECHO_REQUEST
+   ICMP_ECHO
+   ICMP_ECHOREPLY
+   NETLINK_INET_DIAG
+   NETLINK_ROUTE
+   RTMGRP_NEIGH
+   SOCK_CLOEXEC
+   SOCK_NONBLOCK
+android/system/StructTimeval
android/telecom/Call
-   AVAILABLE_PHONE_ACCOUNTS
+   EXTRA_SILENT_RINGING_REQUESTED
+   EXTRA_SUGGESTED_PHONE_ACCOUNTS
android/telecom/Call$Details
+   DIRECTION_INCOMING
+   DIRECTION_OUTGOING
+   DIRECTION_UNKNOWN
+   PROPERTY_NETWORK_IDENTIFIED_EMERGENCY_CALL
+   PROPERTY_VOIP_AUDIO_MODE
+   getCallDirection()I
+android/telecom/CallRedirectionService
android/telecom/CallScreeningService$CallResponse
+   getSilenceCall()Z
android/telecom/CallScreeningService$CallResponse$Builder
+   setSilenceCall(Z)Landroid/telecom/CallScreeningService$CallResponse$Builder;
android/telecom/Connection
-   CAPABILITY_CAN_UPGRADE_TO_VIDEO
+   EVENT_RTT_AUDIO_INDICATION_CHANGED
+   EXTRA_IS_RTT_AUDIO_PRESENT
+   EXTRA_SIP_INVITE
+   onSilence()V
+android/telecom/PhoneAccountSuggestion
android/telecom/TelecomManager
+   ACTION_DEFAULT_CALL_SCREENING_APP_CHANGED
+   EXTRA_CALL_NETWORK_TYPE
+   EXTRA_DEFAULT_CALL_SCREENING_APP_COMPONENT_NAME
+   EXTRA_IS_DEFAULT_CALL_SCREENING_APP
+   METADATA_IN_CALL_SERVICE_CAR_MODE_UI
-   acceptRingingCall()V
-   acceptRingingCall(I)V
-   endCall()Z
+   getSystemDialerPackage()LString;
+   getUserSelectedOutgoingPhoneAccount()LPhoneAccountHandle;
android/telecom/VideoProfile$CameraCapabilities
+   <init>(IIZF)V
+   getMaxZoom()F
+   isZoomSupported()Z
+android/telephony/AvailableNetworkInfo
android/telephony/CarrierConfigManager
+   KEY_CALL_BARRING_SUPPORTS_DEACTIVATE_ALL_BOOL
+   KEY_CALL_BARRING_SUPPORTS_PASSWORD_CHANGE_BOOL
+   KEY_CALL_BARRING_VISIBILITY_BOOL
+   KEY_CARRIER_CALL_SCREENING_APP_STRING
+   KEY_CARRIER_CONFIG_VERSION_STRING
+   KEY_CARRIER_DEFAULT_WFC_IMS_MODE_INT
+   KEY_CARRIER_DEFAULT_WFC_IMS_ROAMING_MODE_INT
+   KEY_CARRIER_SUPPORTS_SS_OVER_UT_BOOL
+   KEY_CARRIER_UT_PROVISIONING_REQUIRED_BOOL
+   KEY_EMERGENCY_NUMBER_PREFIX_STRING_ARRAY
+   KEY_ENHANCED_4G_LTE_ON_BY_DEFAULT_BOOL
+   KEY_HIDE_PRESET_APN_DETAILS_BOOL
+   KEY_OPPORTUNISTIC_NETWORK_DATA_SWITCH_HYSTERESIS_TIME_LONG
+   KEY_OPPORTUNISTIC_NETWORK_ENTRY_OR_EXIT_HYSTERESIS_TIME_LONG
+   KEY_OPPORTUNISTIC_NETWORK_ENTRY_THRESHOLD_BANDWIDTH_INT
+   KEY_OPPORTUNISTIC_NETWORK_ENTRY_THRESHOLD_RSRP_INT
+   KEY_OPPORTUNISTIC_NETWORK_ENTRY_THRESHOLD_RSSNR_INT
+   KEY_OPPORTUNISTIC_NETWORK_EXIT_THRESHOLD_RSRP_INT
+   KEY_OPPORTUNISTIC_NETWORK_EXIT_THRESHOLD_RSSNR_INT
+   KEY_RADIO_RESTART_FAILURE_CAUSES_INT_ARRAY
-   KEY_RESTART_RADIO_ON_PDP_FAIL_REGULAR_DEACTIVATION_BOOL
+   KEY_SHOW_CALL_BLOCKING_DISABLED_NOTIFICATION_ALWAYS_BOOL
+   KEY_SUPPORT_CLIR_NETWORK_DEFAULT_BOOL
+   KEY_SUPPORT_EMERGENCY_SMS_OVER_IMS_BOOL
+   KEY_TTY_SUPPORTED_BOOL
+android/telephony/CellIdentityNr
android/telephony/CellIdentityTdscdma
+   getMobileNetworkOperator()LString;
+   getUarfcn()I
android/telephony/CellInfo
+   UNAVAILABLE
+   UNAVAILABLE_LONG
+android/telephony/CellInfoNr
+android/telephony/CellInfoTdscdma
android/telephony/CellSignalStrengthGsm
+   getBitErrorRate()I
android/telephony/CellSignalStrengthLte
+   getRssi()I
+android/telephony/CellSignalStrengthNr
+android/telephony/CellSignalStrengthTdscdma
+android/telephony/MbmsGroupCallSession
-android/telephony/NeighboringCellInfo
-   CREATOR
-   UNKNOWN_CID
-   UNKNOWN_RSSI
-   <init>(ILString;I)V
-   <init>(LParcel;)V
-   getCid()I
-   getLac()I
-   getNetworkType()I
-   getPsc()I
-   getRssi()I
android/telephony/PhoneNumberUtils
-   isEmergencyNumber(LString;)Z
-   isLocalEmergencyNumber(LContext;LString;)Z
android/telephony/PhoneStateListener
+   LISTEN_ACTIVE_DATA_SUBSCRIPTION_ID_CHANGE
+   LISTEN_EMERGENCY_NUMBER_LIST
+   <init>(LExecutor;)V
+   onActiveDataSubscriptionIdChanged(I)V
android/telephony/ServiceState
-   <init>(LParcel;)V
android/telephony/SignalStrength
+   INVALID
-   getCdmaDbm()I
-   getCdmaEcio()I
+   getCellSignalStrengths()LList;
+   getCellSignalStrengths(LClass;)LList;
-   getEvdoDbm()I
-   getEvdoEcio()I
-   getEvdoSnr()I
-   getGsmBitErrorRate()I
-   getGsmSignalStrength()I
-   isGsm()Z
android/telephony/SmsManager
+   createAppSpecificSmsTokenWithPackageInfo(LString;LPendingIntent;)LString;
+   getSmsMessagesForFinancialApp(LBundle;LExecutor;LFinancialSmsCallback;)V
+android/telephony/SmsManager$FinancialSmsCallback
android/telephony/SubscriptionInfo
+   getCardId()I
+   getCarrierId()I
+   getGroupUuid()LParcelUuid;
-   getMcc()I
+   getMccString()LString;
-   getMnc()I
+   getMncString()LString;
+   getSubscriptionType()I
+   isOpportunistic()Z
android/telephony/SubscriptionManager
+   DEFAULT_SUBSCRIPTION_ID
+   INVALID_SIM_SLOT_INDEX
+   SUBSCRIPTION_TYPE_LOCAL_SIM
+   SUBSCRIPTION_TYPE_REMOTE_SIM
+   addOnOpportunisticSubscriptionsChangedListener(LExecutor;LOnOpportunisticSubscriptionsChangedListener;)V
+   addSubscriptionsIntoGroup(LList;LParcelUuid;)V
+   createSubscriptionGroup(LList;)LParcelUuid;
+   getOpportunisticSubscriptions()LList;
+   getSlotIndex(I)I
+   getSubscriptionIds(I)[I
+   getSubscriptionsInGroup(LParcelUuid;)LList;
+   isActiveSubscriptionId(I)Z
+   isUsableSubscriptionId(I)Z
+   isValidSubscriptionId(I)Z
+   removeOnOpportunisticSubscriptionsChangedListener(LOnOpportunisticSubscriptionsChangedListener;)V
+   removeSubscriptionsFromGroup(LList;LParcelUuid;)V
+   setOpportunistic(ZI)Z
+   switchToSubscription(ILPendingIntent;)V
+android/telephony/SubscriptionManager$OnOpportunisticSubscriptionsChangedListener
android/telephony/TelephonyManager
+   ACTION_CARRIER_MESSAGING_CLIENT_SERVICE
+   ACTION_NETWORK_COUNTRY_CHANGED
+   ACTION_SECRET_CODE
+   ACTION_SUBSCRIPTION_SPECIFIC_CARRIER_IDENTITY_CHANGED
+   DATA_UNKNOWN
-   EXTRA_INCOMING_NUMBER
+   EXTRA_NETWORK_COUNTRY
+   EXTRA_SPECIFIC_CARRIER_ID
+   EXTRA_SPECIFIC_CARRIER_NAME
+   MULTISIM_ALLOWED
+   MULTISIM_NOT_SUPPORTED_BY_CARRIER
+   MULTISIM_NOT_SUPPORTED_BY_HARDWARE
+   NETWORK_TYPE_NR
+   SET_OPPORTUNISTIC_SUB_INACTIVE_SUBSCRIPTION
+   SET_OPPORTUNISTIC_SUB_SUCCESS
+   SET_OPPORTUNISTIC_SUB_VALIDATION_FAILED
+   UNINITIALIZED_CARD_ID
+   UNSUPPORTED_CARD_ID
+   UPDATE_AVAILABLE_NETWORKS_ABORTED
+   UPDATE_AVAILABLE_NETWORKS_INVALID_ARGUMENTS
+   UPDATE_AVAILABLE_NETWORKS_NO_CARRIER_PRIVILEGE
+   UPDATE_AVAILABLE_NETWORKS_SUCCESS
+   UPDATE_AVAILABLE_NETWORKS_UNKNOWN_FAILURE
+   doesSwitchMultiSimConfigTriggerReboot()Z
+   getCardIdForDefaultEuicc()I
+   getCarrierIdFromSimMccMnc()I
+   getEmergencyNumberList()LMap;
+   getEmergencyNumberList(I)LMap;
+   getManufacturerCode()LString;
+   getManufacturerCode(I)LString;
+   getPreferredOpportunisticDataSubscription()I
+   getSimSpecificCarrierId()I
+   getSimSpecificCarrierIdName()LCharSequence;
+   getTypeAllocationCode()LString;
+   getTypeAllocationCode(I)LString;
+   getUiccCardsInfo()LList;
+   isDataRoamingEnabled()Z
+   isEmergencyNumber(LString;)Z
+   isMultiSimSupported()I
+   isRttSupported()Z
+   requestCellInfoUpdate(LExecutor;LCellInfoCallback;)V
+   setPreferredOpportunisticDataSubscription(IZLExecutor;LConsumer;)V
+   switchMultiSimConfig(I)V
+   updateAvailableNetworks(LList;LExecutor;LConsumer;)V
+android/telephony/TelephonyManager$CellInfoCallback
+android/telephony/UiccCardInfo
android/telephony/data/ApnSetting
+   PROTOCOL_NON_IP
+   PROTOCOL_UNSTRUCTURED
+   TYPE_MCX
+   getCarrierId()I
-   getMmsProxyAddress()LInetAddress;
+   getMmsProxyAddressAsString()LString;
-   getProxyAddress()LInetAddress;
+   getProxyAddressAsString()LString;
android/telephony/data/ApnSetting$Builder
+   setCarrierId(I)LBuilder;
-   setMmsProxyAddress(LInetAddress;)LBuilder;
+   setMmsProxyAddress(LString;)LBuilder;
-   setProxyAddress(LInetAddress;)LBuilder;
+   setProxyAddress(LString;)LBuilder;
+android/telephony/emergency/EmergencyNumber
android/telephony/euicc/EuiccManager
+   createForCardId(I)LEuiccManager;
+   updateSubscriptionNickname(ILString;LPendingIntent;)V
android/telephony/gsm/SmsMessage$MessageClass
-   CLASS_0
-   CLASS_1
-   CLASS_2
-   CLASS_3
-   UNKNOWN
+android/telephony/mbms/GroupCall
+android/telephony/mbms/GroupCallCallback
+android/telephony/mbms/MbmsErrors$GroupCallErrors
+android/telephony/mbms/MbmsGroupCallSessionCallback
android/text/AndroidCharacter
-   EAST_ASIAN_WIDTH_AMBIGUOUS
-   EAST_ASIAN_WIDTH_FULL_WIDTH
-   EAST_ASIAN_WIDTH_HALF_WIDTH
-   EAST_ASIAN_WIDTH_NARROW
-   EAST_ASIAN_WIDTH_NEUTRAL
-   EAST_ASIAN_WIDTH_WIDE
-   <init>()V
-   getDirectionalities([C[BI)V
-   getEastAsianWidth(C)I
-   getEastAsianWidths([CII[B)V
-   getMirror(C)C
-   mirror([CII)Z
android/text/ClipboardManager
-   <init>()V
-   getText()LCharSequence;
-   hasText()Z
-   setText(LCharSequence;)V
android/text/PrecomputedText$Params$Builder
+   <init>(LParams;)V
android/text/TextPaint
+   underlineColor
+   underlineThickness
android/text/TextUtils
+   SAFE_STRING_FLAG_FIRST_LINE
+   SAFE_STRING_FLAG_SINGLE_LINE
+   SAFE_STRING_FLAG_TRIM
+   makeSafeForPresentation(LString;IFI)LCharSequence;
android/text/format/Time
-   EPOCH_JULIAN_DAY
-   FRIDAY
-   HOUR
-   MINUTE
-   MONDAY
-   MONDAY_BEFORE_JULIAN_EPOCH
-   MONTH
-   MONTH_DAY
-   SATURDAY
-   SECOND
-   SUNDAY
-   THURSDAY
-   TIMEZONE_UTC
-   TUESDAY
-   WEDNESDAY
-   WEEK_DAY
-   WEEK_NUM
-   YEAR
-   YEAR_DAY
-   allDay
-   gmtoff
-   hour
-   isDst
-   minute
-   month
-   monthDay
-   second
-   timezone
-   weekDay
-   year
-   yearDay
-   <init>()V
-   <init>(LString;)V
-   <init>(LTime;)V
-   after(LTime;)Z
-   before(LTime;)Z
-   clear(LString;)V
-   compare(LTime;LTime;)I
-   format(LString;)LString;
-   format2445()LString;
-   format3339(Z)LString;
-   getActualMaximum(I)I
-   getCurrentTimezone()LString;
-   getJulianDay(JJ)I
-   getJulianMondayFromWeeksSinceEpoch(I)I
-   getWeekNumber()I
-   getWeeksSinceEpochFromJulianDay(II)I
-   isEpoch(LTime;)Z
-   normalize(Z)J
-   parse(LString;)Z
-   parse3339(LString;)Z
-   set(III)V
-   set(IIIIII)V
-   set(J)V
-   set(LTime;)V
-   setJulianDay(I)J
-   setToNow()V
-   switchTimezone(LString;)V
-   toMillis(Z)J
android/text/style/DynamicDrawableSpan
+   ALIGN_CENTER
+android/text/style/LineBackgroundSpan$Standard
+android/text/style/LineHeightSpan$Standard
android/text/style/SuggestionSpan
-   ACTION_SUGGESTION_PICKED
-   SUGGESTION_SPAN_PICKED_AFTER
-   SUGGESTION_SPAN_PICKED_BEFORE
-   SUGGESTION_SPAN_PICKED_HASHCODE
+   getUnderlineColor()I
android/text/style/TextAppearanceSpan
+   getFontFeatureSettings()LString;
+   getFontVariationSettings()LString;
+   getShadowColor()I
+   getShadowDx()F
+   getShadowDy()F
+   getShadowRadius()F
+   getTextFontWeight()I
+   getTextLocales()LLocaleList;
+   getTypeface()LTypeface;
+   isElegantTextHeight()Z
android/text/util/Linkify
+   addLinks(LSpannable;ILFunction;)Z
+   addLinks(LSpannable;LPattern;LString;[LString;LMatchFilter;LTransformFilter;LFunction;)Z
android/transition/Scene
+   getCurrentScene(LViewGroup;)LScene;
android/transition/TransitionValues
-   <init>()V
+   <init>(LView;)V
android/util/ArrayMap
+   indexOfValue(LObject;)I
android/util/ArraySet
+   <init>(LCollection;)V
android/util/DisplayMetrics
+   DENSITY_140
+   DENSITY_180
+   DENSITY_200
+   DENSITY_220
+   DENSITY_450
+   DENSITY_600
android/util/EventLogTags
-   <init>()V
-   <init>(LBufferedReader;)V
-   get(I)LDescription;
-   get(LString;)LDescription;
-android/util/EventLogTags$Description
-   mName
-   mTag
android/util/MutableBoolean
-   value
-   <init>(Z)V
android/util/MutableByte
-   value
-   <init>(B)V
android/util/MutableChar
-   value
-   <init>(C)V
android/util/MutableDouble
-   value
-   <init>(D)V
android/util/MutableFloat
-   value
-   <init>(F)V
android/util/MutableInt
-   value
-   <init>(I)V
android/util/MutableLong
-   value
-   <init>(J)V
android/util/MutableShort
-   value
-   <init>(S)V
android/util/SparseBooleanArray
+   setValueAt(IZ)V
android/util/SparseIntArray
+   setValueAt(II)V
android/util/StatsLog
+   logBinaryPushStateChanged(LString;JII[J)Z
android/util/TimeUtils
+   getTimeZoneIdsForCountryCode(LString;)LList;
android/util/TypedValue
+   sourceResourceId
+   isColorType()Z
android/view/ContextThemeWrapper
+   setTheme(LTheme;)V
android/view/Display
+   getCutout()LDisplayCutout;
+   getPreferredWideGamutColorSpace()LColorSpace;
android/view/Display$HdrCapabilities
+   HDR_TYPE_HDR10_PLUS
android/view/DisplayCutout
+   <init>(LInsets;LRect;LRect;LRect;LRect;)V
-   <init>(LRect;LList;)V
+   getBoundingRectBottom()LRect;
+   getBoundingRectLeft()LRect;
+   getBoundingRectRight()LRect;
+   getBoundingRectTop()LRect;
android/view/InputDevice
+   isExternal()Z
android/view/KeyCharacterMap$KeyData
-   META_LENGTH
-   displayLabel
-   meta
-   number
-   <init>()V
android/view/KeyEvent
-   ACTION_MULTIPLE
+   KEYCODE_PROFILE_SWITCH
+   KEYCODE_THUMBS_DOWN
+   KEYCODE_THUMBS_UP
-   getCharacters()LString;
android/view/LayoutInflater
+   createView(LContext;LString;LString;LAttributeSet;)LView;
+   onCreateView(LContext;LView;LString;LAttributeSet;)LView;
android/view/MenuItem
+   getIconTintBlendMode()LBlendMode;
+   setIconTintBlendMode(LBlendMode;)LMenuItem;
android/view/MotionEvent
+   CLASSIFICATION_AMBIGUOUS_GESTURE
+   CLASSIFICATION_DEEP_PRESS
+   CLASSIFICATION_NONE
+   FLAG_WINDOW_IS_PARTIALLY_OBSCURED
+   getClassification()I
+   getRawX(I)F
+   getRawY(I)F
android/view/OrientationListener
-   ORIENTATION_UNKNOWN
-   <init>(LContext;)V
-   <init>(LContext;I)V
-   disable()V
-   enable()V
-   onOrientationChanged(I)V
android/view/Surface
+   <init>(LSurfaceControl;)V
+android/view/SurfaceControl
+android/view/SurfaceControl$Builder
+android/view/SurfaceControl$Transaction
android/view/SurfaceView
+   getSurfaceControl()LSurfaceControl;
android/view/TouchDelegate
+   getTouchDelegateInfo()LTouchDelegateInfo;
+   onTouchExplorationHoverEvent(LMotionEvent;)Z
android/view/View
+   getAccessibilityDelegate()LAccessibilityDelegate;
+   getAnimationMatrix()LMatrix;
+   getAttributeResolutionStack(I)[I
+   getAttributeSourceResourceMap()LMap;
+   getBackgroundTintBlendMode()LBlendMode;
+   getContentCaptureSession()LContentCaptureSession;
+   getExplicitStyle()I
+   getForegroundTintBlendMode()LBlendMode;
+   getHorizontalScrollbarThumbDrawable()LDrawable;
+   getHorizontalScrollbarTrackDrawable()LDrawable;
+   getLocationInSurface([I)V
+   getSourceLayoutResId()I
+   getSystemGestureExclusionRects()LList;
+   getTransitionAlpha()F
+   getUniqueDrawingId()J
+   getVerticalScrollbarThumbDrawable()LDrawable;
+   getVerticalScrollbarTrackDrawable()LDrawable;
+   isForceDarkAllowed()Z
+   saveAttributeDataForStyleable(LContext;[ILAttributeSet;LTypedArray;II)V
+   setAnimationMatrix(LMatrix;)V
+   setBackgroundTintBlendMode(LBlendMode;)V
+   setContentCaptureSession(LContentCaptureSession;)V
+   setForceDarkAllowed(Z)V
+   setForegroundTintBlendMode(LBlendMode;)V
+   setHorizontalScrollbarThumbDrawable(LDrawable;)V
+   setHorizontalScrollbarTrackDrawable(LDrawable;)V
+   setLeftTopRightBottom(IIII)V
+   setSystemGestureExclusionRects(LList;)V
+   setTransitionAlpha(F)V
+   setTransitionVisibility(I)V
+   setVerticalScrollbarThumbDrawable(LDrawable;)V
+   setVerticalScrollbarTrackDrawable(LDrawable;)V
+   transformMatrixToGlobal(LMatrix;)V
+   transformMatrixToLocal(LMatrix;)V
android/view/ViewConfiguration
+   getAmbiguousGestureMultiplier()F
+   getScaledMinimumScalingSpan()I
android/view/ViewDebug$HierarchyTraceType
-   BUILD_CACHE
-   DRAW
-   INVALIDATE
-   INVALIDATE_CHILD
-   INVALIDATE_CHILD_IN_PARENT
-   ON_LAYOUT
-   ON_MEASURE
-   REQUEST_LAYOUT
android/view/ViewDebug$RecyclerTraceType
-   BIND_VIEW
-   MOVE_FROM_ACTIVE_TO_SCRAP_HEAP
-   MOVE_TO_SCRAP_HEAP
-   NEW_VIEW
-   RECYCLE_FROM_ACTIVE_HEAP
-   RECYCLE_FROM_SCRAP_HEAP
android/view/ViewGroup
+   getChildDrawingOrder(I)I
+   isLayoutSuppressed()Z
+   suppressLayout(Z)V
android/view/ViewTreeObserver
+   addOnSystemGestureExclusionRectsChangedListener(LConsumer;)V
+   registerFrameCommitCallback(LRunnable;)V
+   removeOnSystemGestureExclusionRectsChangedListener(LConsumer;)V
+   unregisterFrameCommitCallback(LRunnable;)Z
android/view/Window
+   getSystemGestureExclusionRects()LList;
+   isNavigationBarContrastEnforced()Z
+   isStatusBarContrastEnforced()Z
+   setNavigationBarContrastEnforced(Z)V
+   setStatusBarContrastEnforced(Z)V
+   setSystemGestureExclusionRects(LList;)V
android/view/WindowInsets
+   getMandatorySystemGestureInsets()LInsets;
+   getStableInsets()LInsets;
+   getSystemGestureInsets()LInsets;
+   getSystemWindowInsets()LInsets;
+   getTappableElementInsets()LInsets;
+   inset(IIII)LWindowInsets;
-   replaceSystemWindowInsets(IIII)LWindowInsets;
-   replaceSystemWindowInsets(LRect;)LWindowInsets;
+android/view/WindowInsets$Builder
android/view/accessibility/AccessibilityManager
+   FLAG_CONTENT_CONTROLS
+   FLAG_CONTENT_ICONS
+   FLAG_CONTENT_TEXT
+   getRecommendedTimeoutMillis(II)I
android/view/accessibility/AccessibilityNodeInfo
-   getBoundsInParent(LRect;)V
+   getTouchDelegateInfo()LTouchDelegateInfo;
+   isTextEntryKey()Z
-   setBoundsInParent(LRect;)V
+   setTextEntryKey(Z)V
+   setTouchDelegateInfo(LTouchDelegateInfo;)V
android/view/accessibility/AccessibilityNodeInfo$AccessibilityAction
+   ACTION_PAGE_DOWN
+   ACTION_PAGE_LEFT
+   ACTION_PAGE_RIGHT
+   ACTION_PAGE_UP
+android/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo
android/view/animation/Animation
-   getDetachWallpaper()Z
-   setDetachWallpaper(Z)V
+android/view/contentcapture/ContentCaptureCondition
+android/view/contentcapture/ContentCaptureContext
+android/view/contentcapture/ContentCaptureContext$Builder
+android/view/contentcapture/ContentCaptureManager
+android/view/contentcapture/ContentCaptureSession
+android/view/contentcapture/ContentCaptureSessionId
+android/view/contentcapture/DataRemovalRequest
+android/view/contentcapture/DataRemovalRequest$Builder
+android/view/contentcapture/DataRemovalRequest$LocusIdRequest
android/view/inputmethod/InputMethodManager
-   setAdditionalInputMethodSubtypes(LString;[LInputMethodSubtype;)V
-   setCurrentInputMethodSubtype(LInputMethodSubtype;)Z
-   viewClicked(LView;)V
+android/view/inspector/InspectionCompanion
+android/view/inspector/InspectionCompanion$UninitializedPropertyMapException
+android/view/inspector/InspectionCompanionProvider
+android/view/inspector/IntFlagMapping
+android/view/inspector/PropertyMapper
+android/view/inspector/PropertyMapper$PropertyConflictException
+android/view/inspector/PropertyReader
+android/view/inspector/PropertyReader$PropertyTypeMismatchException
+android/view/inspector/StaticInspectionCompanionProvider
+android/view/inspector/WindowInspector
+android/view/textclassifier/ConversationAction
+android/view/textclassifier/ConversationAction$Builder
+android/view/textclassifier/ConversationActions
+android/view/textclassifier/ConversationActions$Message
+android/view/textclassifier/ConversationActions$Message$Builder
+android/view/textclassifier/ConversationActions$Request
+android/view/textclassifier/ConversationActions$Request$Builder
android/view/textclassifier/TextClassification
+   getExtras()LBundle;
android/view/textclassifier/TextClassification$Builder
+   setExtras(LBundle;)LBuilder;
android/view/textclassifier/TextClassification$Request
+   getCallingPackageName()LString;
+   getExtras()LBundle;
android/view/textclassifier/TextClassification$Request$Builder
+   setExtras(LBundle;)Landroid/view/textclassifier/TextClassification$Request$Builder;
android/view/textclassifier/TextClassifier
+   EXTRA_FROM_TEXT_CLASSIFIER
+   WIDGET_TYPE_NOTIFICATION
+   detectLanguage(LRequest;)LTextLanguage;
+   onTextClassifierEvent(LTextClassifierEvent;)V
+   suggestConversationActions(LRequest;)LConversationActions;
android/view/textclassifier/TextClassifier$EntityConfig
-   create(LCollection;LCollection;LCollection;)LEntityConfig;
-   createWithExplicitEntityList(LCollection;)LEntityConfig;
-   createWithHints(LCollection;)LEntityConfig;
+   shouldIncludeTypesFromTextClassifier()Z
+android/view/textclassifier/TextClassifier$EntityConfig$Builder
+android/view/textclassifier/TextClassifierEvent
+android/view/textclassifier/TextClassifierEvent$Builder
+android/view/textclassifier/TextClassifierEvent$ConversationActionsEvent
+android/view/textclassifier/TextClassifierEvent$ConversationActionsEvent$Builder
+android/view/textclassifier/TextClassifierEvent$LanguageDetectionEvent
+android/view/textclassifier/TextClassifierEvent$LanguageDetectionEvent$Builder
+android/view/textclassifier/TextClassifierEvent$TextLinkifyEvent
+android/view/textclassifier/TextClassifierEvent$TextLinkifyEvent$Builder
+android/view/textclassifier/TextClassifierEvent$TextSelectionEvent
+android/view/textclassifier/TextClassifierEvent$TextSelectionEvent$Builder
+android/view/textclassifier/TextLanguage
+android/view/textclassifier/TextLanguage$Builder
+android/view/textclassifier/TextLanguage$Request
+android/view/textclassifier/TextLanguage$Request$Builder
android/view/textclassifier/TextLinks
+   STATUS_UNSUPPORTED_CHARACTER
+   getExtras()LBundle;
android/view/textclassifier/TextLinks$Builder
+   addLink(IILMap;LBundle;)LBuilder;
+   setExtras(LBundle;)LBuilder;
android/view/textclassifier/TextLinks$Request
+   getCallingPackageName()LString;
+   getExtras()LBundle;
android/view/textclassifier/TextLinks$Request$Builder
+   setExtras(LBundle;)Landroid/view/textclassifier/TextLinks$Request$Builder;
android/view/textclassifier/TextLinks$TextLink
+   getExtras()LBundle;
android/view/textclassifier/TextSelection
+   getExtras()LBundle;
android/view/textclassifier/TextSelection$Builder
+   setExtras(LBundle;)LBuilder;
android/view/textclassifier/TextSelection$Request
+   getCallingPackageName()LString;
+   getExtras()LBundle;
android/view/textclassifier/TextSelection$Request$Builder
+   setExtras(LBundle;)Landroid/view/textclassifier/TextSelection$Request$Builder;
android/webkit/CookieManager
-   <init>()V
android/webkit/CookieSyncManager
-   createInstance(LContext;)LCookieSyncManager;
-   getInstance()LCookieSyncManager;
android/webkit/RenderProcessGoneDetail
-   <init>()V
android/webkit/SafeBrowsingResponse
-   <init>()V
android/webkit/ServiceWorkerController
-   <init>()V
android/webkit/TracingController
-   <init>()V
android/webkit/WebIconDatabase
-   <init>()V
-   close()V
-   getInstance()LWebIconDatabase;
-   open(LString;)V
-   releaseIconForPageUrl(LString;)V
-   removeAllIcons()V
-   requestIconForPageUrl(LString;LIconListener;)V
-   retainIconForPageUrl(LString;)V
android/webkit/WebIconDatabase$IconListener
-   onReceivedIcon(LString;LBitmap;)V
android/webkit/WebSettings
+   FORCE_DARK_AUTO
+   FORCE_DARK_OFF
+   FORCE_DARK_ON
+   getForceDark()I
+   setForceDark(I)V
android/webkit/WebSettings$LayoutAlgorithm
-   NARROW_COLUMNS
-   SINGLE_COLUMN
android/webkit/WebSettings$TextSize
-   LARGER
-   LARGEST
-   NORMAL
-   SMALLER
-   SMALLEST
android/webkit/WebStorage$QuotaUpdater
-   updateQuota(J)V
android/webkit/WebView
+   getWebViewRenderProcess()LWebViewRenderProcess;
+   getWebViewRenderProcessClient()LWebViewRenderProcessClient;
+   setWebViewRenderProcessClient(LExecutor;LWebViewRenderProcessClient;)V
+   setWebViewRenderProcessClient(LWebViewRenderProcessClient;)V
android/webkit/WebViewClient
+   SAFE_BROWSING_THREAT_BILLING
android/webkit/WebViewDatabase
-   <init>()V
android/webkit/WebViewFragment
-   <init>()V
-   getWebView()LWebView;
+android/webkit/WebViewRenderProcess
+android/webkit/WebViewRenderProcessClient
android/widget/AbsListView
+   getBottomEdgeEffectColor()I
+   getTopEdgeEffectColor()I
+   isDrawSelectorOnTop()Z
+   setBottomEdgeEffectColor(I)V
+   setEdgeEffectColor(I)V
+   setTopEdgeEffectColor(I)V
android/widget/AbsSeekBar
+   getThumbTintBlendMode()LBlendMode;
+   getTickMarkTintBlendMode()LBlendMode;
+   setThumbTintBlendMode(LBlendMode;)V
+   setTickMarkTintBlendMode(LBlendMode;)V
android/widget/AbsoluteLayout
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-android/widget/AbsoluteLayout$LayoutParams
-   x
-   y
-   <init>(IIII)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LLayoutParams;)V
-   debug(LString;)LString;
android/widget/AnalogClock
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
android/widget/AutoCompleteTextView
+   getInputMethodMode()I
+   refreshAutoCompleteResults()V
+   setInputMethodMode(I)V
android/widget/CheckedTextView
+   getCheckMarkTintBlendMode()LBlendMode;
+   setCheckMarkTintBlendMode(LBlendMode;)V
android/widget/CompoundButton
+   getButtonTintBlendMode()LBlendMode;
+   setButtonTintBlendMode(LBlendMode;)V
android/widget/DialerFilter
-   DIGITS_AND_LETTERS
-   DIGITS_AND_LETTERS_NO_DIGITS
-   DIGITS_AND_LETTERS_NO_LETTERS
-   DIGITS_ONLY
-   LETTERS_ONLY
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   append(LString;)V
-   clearText()V
-   getDigits()LCharSequence;
-   getFilterText()LCharSequence;
-   getLetters()LCharSequence;
-   getMode()I
-   isQwertyKeyboard()Z
-   onModeChange(II)V
-   removeFilterWatcher(LTextWatcher;)V
-   setDigitsWatcher(LTextWatcher;)V
-   setFilterWatcher(LTextWatcher;)V
-   setLettersWatcher(LTextWatcher;)V
-   setMode(I)V
android/widget/DigitalClock
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
android/widget/EdgeEffect
+   DEFAULT_BLEND_MODE
+   getBlendMode()LBlendMode;
+   setBlendMode(LBlendMode;)V
android/widget/Gallery
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   setAnimationDuration(I)V
-   setCallbackDuringFling(Z)V
-   setGravity(I)V
-   setSpacing(I)V
-   setUnselectedAlpha(F)V
-android/widget/Gallery$LayoutParams
-   <init>(II)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LLayoutParams;)V
android/widget/HorizontalScrollView
+   getLeftEdgeEffectColor()I
+   getRightEdgeEffectColor()I
+   setEdgeEffectColor(I)V
+   setLeftEdgeEffectColor(I)V
+   setRightEdgeEffectColor(I)V
android/widget/ImageView
+   animateTransform(LMatrix;)V
+   getImageTintBlendMode()LBlendMode;
+   setImageTintBlendMode(LBlendMode;)V
android/widget/ListPopupWindow
+   getEpicenterBounds()LRect;
+   setEpicenterBounds(LRect;)V
android/widget/Magnifier
+   SOURCE_BOUND_MAX_IN_SURFACE
+   SOURCE_BOUND_MAX_VISIBLE
-   <init>(LView;)V
+   getCornerRadius()F
+   getDefaultHorizontalSourceToMagnifierOffset()I
+   getDefaultVerticalSourceToMagnifierOffset()I
+   getElevation()F
+   getOverlay()LDrawable;
+   getPosition()LPoint;
+   getSourceHeight()I
+   getSourcePosition()LPoint;
+   getSourceWidth()I
+   isClippingEnabled()Z
+   setZoom(F)V
+   show(FFFF)V
+android/widget/Magnifier$Builder
android/widget/NumberPicker
+   getSelectionDividerHeight()I
+   getTextColor()I
+   getTextSize()F
+   setSelectionDividerHeight(I)V
+   setTextColor(I)V
+   setTextSize(F)V
android/widget/PopupMenu
+   setForceShowIcon(Z)V
android/widget/PopupWindow
+   getEpicenterBounds()LRect;
+   isClippedToScreen()Z
+   isLaidOutInScreen()Z
+   isTouchModal()Z
+   setEpicenterBounds(LRect;)V
+   setIsClippedToScreen(Z)V
+   setIsLaidOutInScreen(Z)V
+   setTouchModal(Z)V
android/widget/ProgressBar
+   getCurrentDrawable()LDrawable;
+   getIndeterminateTintBlendMode()LBlendMode;
+   getMaxHeight()I
+   getMaxWidth()I
+   getMinHeight()I
+   getMinWidth()I
+   getProgressBackgroundTintBlendMode()LBlendMode;
+   getProgressTintBlendMode()LBlendMode;
+   getSecondaryProgressTintBlendMode()LBlendMode;
+   setIndeterminateTintBlendMode(LBlendMode;)V
+   setMaxHeight(I)V
+   setMaxWidth(I)V
+   setMinHeight(I)V
+   setMinWidth(I)V
+   setProgressBackgroundTintBlendMode(LBlendMode;)V
+   setProgressTintBlendMode(LBlendMode;)V
+   setSecondaryProgressTintBlendMode(LBlendMode;)V
android/widget/RelativeLayout
+   getIgnoreGravity()I
android/widget/RemoteViews
+   EXTRA_SHARED_ELEMENT_BOUNDS
+   setLightBackgroundLayoutId(I)V
+   setOnClickResponse(ILRemoteResponse;)V
+android/widget/RemoteViews$RemoteResponse
android/widget/ScrollView
+   getBottomEdgeEffectColor()I
+   getTopEdgeEffectColor()I
+   scrollToDescendant(LView;)V
+   setBottomEdgeEffectColor(I)V
+   setEdgeEffectColor(I)V
+   setTopEdgeEffectColor(I)V
android/widget/SearchView
-   isIconfiedByDefault()Z
+   isIconifiedByDefault()Z
android/widget/SlidingDrawer
-   ORIENTATION_HORIZONTAL
-   ORIENTATION_VERTICAL
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   animateClose()V
-   animateOpen()V
-   animateToggle()V
-   close()V
-   getContent()LView;
-   getHandle()LView;
-   isMoving()Z
-   isOpened()Z
-   lock()V
-   open()V
-   setOnDrawerCloseListener(LOnDrawerCloseListener;)V
-   setOnDrawerOpenListener(LOnDrawerOpenListener;)V
-   setOnDrawerScrollListener(LOnDrawerScrollListener;)V
-   toggle()V
-   unlock()V
-android/widget/SlidingDrawer$OnDrawerCloseListener
-   onDrawerClosed()V
-android/widget/SlidingDrawer$OnDrawerOpenListener
-   onDrawerOpened()V
-android/widget/SlidingDrawer$OnDrawerScrollListener
-   onScrollEnded()V
-   onScrollStarted()V
android/widget/Switch
+   getThumbTintBlendMode()LBlendMode;
+   getTrackTintBlendMode()LBlendMode;
+   setThumbTintBlendMode(LBlendMode;)V
+   setTrackTintBlendMode(LBlendMode;)V
android/widget/TextView
+   getCompoundDrawableTintBlendMode()LBlendMode;
+   getTextCursorDrawable()LDrawable;
+   getTextDirectionHeuristic()LTextDirectionHeuristic;
+   getTextSelectHandle()LDrawable;
+   getTextSelectHandleLeft()LDrawable;
+   getTextSelectHandleRight()LDrawable;
+   isHorizontallyScrollable()Z
+   isSingleLine()Z
+   setCompoundDrawableTintBlendMode(LBlendMode;)V
+   setTextCursorDrawable(I)V
+   setTextCursorDrawable(LDrawable;)V
+   setTextSelectHandle(I)V
+   setTextSelectHandle(LDrawable;)V
+   setTextSelectHandleLeft(I)V
+   setTextSelectHandleLeft(LDrawable;)V
+   setTextSelectHandleRight(I)V
+   setTextSelectHandleRight(LDrawable;)V
android/widget/ToggleButton
+   getDisabledAlpha()F
android/widget/Toolbar
+   getCollapseContentDescription()LCharSequence;
+   getCollapseIcon()LDrawable;
+   setCollapseContentDescription(I)V
+   setCollapseContentDescription(LCharSequence;)V
+   setCollapseIcon(I)V
+   setCollapseIcon(LDrawable;)V
android/widget/TwoLineListItem
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   getText1()LTextView;
-   getText2()LTextView;
android/widget/ViewFlipper
+   getFlipInterval()I
android/widget/ZoomButton
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   <init>(LContext;LAttributeSet;I)V
-   <init>(LContext;LAttributeSet;II)V
-   setZoomSpeed(J)V
android/widget/ZoomButtonsController
-   <init>(LView;)V
-   getContainer()LViewGroup;
-   getZoomControls()LView;
-   isAutoDismissed()Z
-   isVisible()Z
-   setAutoDismissed(Z)V
-   setFocusable(Z)V
-   setOnZoomListener(LOnZoomListener;)V
-   setVisible(Z)V
-   setZoomInEnabled(Z)V
-   setZoomOutEnabled(Z)V
-   setZoomSpeed(J)V
-android/widget/ZoomButtonsController$OnZoomListener
-   onVisibilityChanged(Z)V
-   onZoom(Z)V
-android/widget/ZoomControls
-   <init>(LContext;)V
-   <init>(LContext;LAttributeSet;)V
-   hide()V
-   setIsZoomInEnabled(Z)V
-   setIsZoomOutEnabled(Z)V
-   setOnZoomInClickListener(LOnClickListener;)V
-   setOnZoomOutClickListener(LOnClickListener;)V
-   setZoomSpeed(J)V
-   show()V
dalvik/annotation/TestTarget
-   conceptName()LString;
-   methodArgs()[LClass;
-   methodName()LString;
dalvik/annotation/TestTargetClass
-   value()LClass;
dalvik/system/DelegateLastClassLoader
+   <init>(LString;LString;LClassLoader;Z)V
dalvik/system/DexFile
-   close()V
-   entries()LEnumeration;
-   getName()LString;
-   isDexOptNeeded(LString;)Z
-   loadClass(LString;LClassLoader;)LClass;
dalvik/system/InMemoryDexClassLoader
+   <init>([LByteBuffer;LString;LClassLoader;)V
java/io/LineNumberInputStream
-   <init>(LInputStream;)V
-   getLineNumber()I
-   setLineNumber(I)V
java/io/StringBufferInputStream
-   buffer
-   count
-   pos
-   <init>(LString;)V
java/lang/invoke/MethodHandleInfo
-   refKindIsField(I)Z
-   refKindIsValid(I)Z
-   refKindName(I)LString;
java/security/Certificate
-   decode(LInputStream;)V
-   encode(LOutputStream;)V
-   getFormat()LString;
-   getGuarantor()LPrincipal;
-   getPrincipal()LPrincipal;
-   getPublicKey()LPublicKey;
-   toString(Z)LString;
java/security/Identity
-   <init>()V
-   <init>(LString;)V
-   <init>(LString;LIdentityScope;)V
-   addCertificate(LCertificate;)V
-   certificates()[LCertificate;
-   getInfo()LString;
-   getPublicKey()LPublicKey;
-   getScope()LIdentityScope;
-   identityEquals(LIdentity;)Z
-   removeCertificate(LCertificate;)V
-   setInfo(LString;)V
-   setPublicKey(LPublicKey;)V
-   toString(Z)LString;
java/security/IdentityScope
-   <init>()V
-   <init>(LString;)V
-   <init>(LString;LIdentityScope;)V
-   addIdentity(LIdentity;)V
-   getIdentity(LPrincipal;)LIdentity;
-   getIdentity(LPublicKey;)LIdentity;
-   getIdentity(LString;)LIdentity;
-   getSystemScope()LIdentityScope;
-   identities()LEnumeration;
-   removeIdentity(LIdentity;)V
-   setSystemScope(LIdentityScope;)V
-   size()I
java/security/Signer
-   <init>()V
-   <init>(LString;)V
-   <init>(LString;LIdentityScope;)V
-   getPrivateKey()LPrivateKey;
-   setKeyPair(LKeyPair;)V
java/util/zip/InflaterInputStream
-   closed
javax/net/ssl/SSLEngine
+   getApplicationProtocol()LString;
+   getHandshakeApplicationProtocol()LString;
+   getHandshakeApplicationProtocolSelector()LBiFunction;
+   setHandshakeApplicationProtocolSelector(LBiFunction;)V
javax/net/ssl/SSLParameters
+   getApplicationProtocols()[LString;
+   setApplicationProtocols([LString;)V
javax/net/ssl/SSLSocket
+   getApplicationProtocol()LString;
+   getHandshakeApplicationProtocol()LString;
+   getHandshakeApplicationProtocolSelector()LBiFunction;
+   setHandshakeApplicationProtocolSelector(LBiFunction;)V
org/apache/http/conn/ConnectTimeoutException
-   <init>()V
-   <init>(LString;)V
org/apache/http/conn/scheme/HostNameResolver
-   resolve(LString;)LInetAddress;
org/apache/http/conn/scheme/LayeredSocketFactory
-   createSocket(LSocket;LString;IZ)LSocket;
org/apache/http/conn/scheme/SocketFactory
-   connectSocket(LSocket;LString;ILInetAddress;ILHttpParams;)LSocket;
-   createSocket()LSocket;
-   isSecure(LSocket;)Z
org/apache/http/conn/ssl/AbstractVerifier
-   <init>()V
-   acceptableCountryWildcard(LString;)Z
-   countDots(LString;)I
-   getCNs(LX509Certificate;)[LString;
-   getDNSSubjectAlts(LX509Certificate;)[LString;
-   verify(LString;[LString;[LString;Z)V
org/apache/http/conn/ssl/AllowAllHostnameVerifier
-   <init>()V
org/apache/http/conn/ssl/BrowserCompatHostnameVerifier
-   <init>()V
org/apache/http/conn/ssl/SSLSocketFactory
-   ALLOW_ALL_HOSTNAME_VERIFIER
-   BROWSER_COMPATIBLE_HOSTNAME_VERIFIER
-   SSL
-   SSLV2
-   STRICT_HOSTNAME_VERIFIER
-   TLS
-   <init>(LKeyStore;)V
-   <init>(LKeyStore;LString;)V
-   <init>(LKeyStore;LString;LKeyStore;)V
-   <init>(LString;LKeyStore;LString;LKeyStore;LSecureRandom;LHostNameResolver;)V
-   getHostnameVerifier()LX509HostnameVerifier;
-   getSocketFactory()LSSLSocketFactory;
-   setHostnameVerifier(LX509HostnameVerifier;)V
org/apache/http/conn/ssl/StrictHostnameVerifier
-   <init>()V
org/apache/http/conn/ssl/X509HostnameVerifier
-   verify(LString;LSSLSocket;)V
-   verify(LString;LX509Certificate;)V
-   verify(LString;[LString;[LString;)V
org/apache/http/params/CoreConnectionPNames
-   CONNECTION_TIMEOUT
-   MAX_HEADER_COUNT
-   MAX_LINE_LENGTH
-   SOCKET_BUFFER_SIZE
-   SO_LINGER
-   SO_TIMEOUT
-   STALE_CONNECTION_CHECK
-   TCP_NODELAY
org/apache/http/params/HttpConnectionParams
-   getConnectionTimeout(LHttpParams;)I
-   getLinger(LHttpParams;)I
-   getSoTimeout(LHttpParams;)I
-   getSocketBufferSize(LHttpParams;)I
-   getTcpNoDelay(LHttpParams;)Z
-   isStaleCheckingEnabled(LHttpParams;)Z
-   setConnectionTimeout(LHttpParams;I)V
-   setLinger(LHttpParams;I)V
-   setSoTimeout(LHttpParams;I)V
-   setSocketBufferSize(LHttpParams;I)V
-   setStaleCheckingEnabled(LHttpParams;Z)V
-   setTcpNoDelay(LHttpParams;Z)V
org/apache/http/params/HttpParams
-   copy()LHttpParams;
-   getBooleanParameter(LString;Z)Z
-   getDoubleParameter(LString;D)D
-   getIntParameter(LString;I)I
-   getLongParameter(LString;J)J
-   getParameter(LString;)LObject;
-   isParameterFalse(LString;)Z
-   isParameterTrue(LString;)Z
-   removeParameter(LString;)Z
-   setBooleanParameter(LString;Z)LHttpParams;
-   setDoubleParameter(LString;D)LHttpParams;
-   setIntParameter(LString;I)LHttpParams;
-   setLongParameter(LString;J)LHttpParams;
-   setParameter(LString;LObject;)LHttpParams;
org/xml/sax/AttributeList
-   getLength()I
-   getName(I)LString;
-   getType(I)LString;
-   getType(LString;)LString;
-   getValue(I)LString;
-   getValue(LString;)LString;
org/xml/sax/DocumentHandler
-   characters([CII)V
-   endDocument()V
-   endElement(LString;)V
-   ignorableWhitespace([CII)V
-   processingInstruction(LString;LString;)V
-   setDocumentLocator(LLocator;)V
-   startDocument()V
-   startElement(LString;LAttributeList;)V
org/xml/sax/HandlerBase
-   <init>()V
org/xml/sax/Parser
-   parse(LInputSource;)V
-   parse(LString;)V
-   setDTDHandler(LDTDHandler;)V
-   setDocumentHandler(LDocumentHandler;)V
-   setEntityResolver(LEntityResolver;)V
-   setErrorHandler(LErrorHandler;)V
-   setLocale(LLocale;)V
org/xml/sax/helpers/AttributeListImpl
-   <init>()V
-   <init>(LAttributeList;)V
-   addAttribute(LString;LString;LString;)V
-   clear()V
-   removeAttribute(LString;)V
-   setAttributeList(LAttributeList;)V
org/xml/sax/helpers/ParserFactory
-   makeParser()LParser;
-   makeParser(LString;)LParser;

< Previous How to toggle boolean in SQLite
Next > Kotlin is even more fun now!!