MissingSplitsDetectingApplication

public class MissingSplitsDetectingApplication
extends Application

java.lang.Object
   ↳ android.content.Context
     ↳ android.content.ContextWrapper
       ↳ android.app.Application
         ↳ com.google.android.play.core.missingsplits.MissingSplitsDetectingApplication


This class is deprecated.
the feature is now obsolete. Installs with missing splits are now blocked on devices which have Play Protect active or run on Android 10.

A convenience Application that avoids app crashes in situations where the installed app is missing required split APKs.

You can use this Application in one of the following ways:

Summary

Inherited constants

Public constructors

MissingSplitsDetectingApplication()

Public methods

final void onCreate()
void onCreateCustom()

This method is deprecated. the feature is now obsolete. Installs with missing splits are now blocked on devices which have Play Protect active or run on Android 10.

Inherited methods

Public constructors

MissingSplitsDetectingApplication

public MissingSplitsDetectingApplication ()

Public methods

onCreate

public final void onCreate ()

onCreateCustom

public void onCreateCustom ()

This method is deprecated.
the feature is now obsolete. Installs with missing splits are now blocked on devices which have Play Protect active or run on Android 10.

Instead of using Application.onCreate(), you can override this methos to define custom behavior.

Note that this method is not invoked automatically when the app has been incorrectly sideloaded.

Do NOT call super.onCreate() from within this method.