PackageManagerClear Method AndroidLib - Beatsleigher Edition
Clears data associated with a package m_package. This method takes a package (e.g.: com.myapp.application) as an argument.

Namespace: RegawMOD.Android
Assembly: AndroidLib (in AndroidLib.dll) Version: 1.5.2.0 (1.5.2.0)
Syntax

public void Clear(
	string m_package
)

Parameters

m_package
Type: SystemString
The package to clear the data from. This parameter may not be null or empty. If this parameter is null or empty, the method will throw an exception. Make sure you enter a valid package name, otherwise the method will also throw an exception.
Exceptions

ExceptionCondition
ArgumentNullException The method will throw this exception if the m_package parameter is set to null (Visual Basic: Nothing), is empty or plain whitespace. In those cases, the exception is thrown. It is recommended that you use a try-catch block for this method, as it expects to be terminated after an exception has occurred.
ArgumentException The method will throw this exception if the m_package parameter does not match the pattern for application packages. (e.g.: com.myapp.application). The case does not matter, this method uses case-insensitive regular expressions. It is recommended you use a try-catch block for this method, as it expects to be terminated after an exception has occurred.
See Also

Reference