-
public class MetaDataUtilsUtility class to easily access the manifest meta-data info
-
-
Field Summary
Fields Modifier and Type Field Description public final static StringMANIFEST_SENDER_ID_KEYpublic final static StringMANIFEST_FORCE_FCM_IID_KEY
-
Method Summary
Modifier and Type Method Description static BundlegetAppMetaData(Context context)Get the bundle meta data info from the AndroidManifest static booleangetBooleanMetaData(Context context, String key)Get a boolean meta-data info value from the manifest static intgetIntMetaData(Context context, String key)Get an integer meta-data info value from the manifest -
-
Method Detail
-
getAppMetaData
static Bundle getAppMetaData(Context context)
Get the bundle meta data info from the AndroidManifest
- Parameters:
context- Application context
-
getBooleanMetaData
static boolean getBooleanMetaData(Context context, String key)
Get a boolean meta-data info value from the manifest
- Parameters:
context- Application contextkey- key of the meta-data info
-
getIntMetaData
static int getIntMetaData(Context context, String key)
Get an integer meta-data info value from the manifest
- Parameters:
context- Application contextkey- key of the meta-data info
-
-
-
-