ModuleReference
fun ModuleReference( groupName: String? = null, moduleName: String, packageName: String, version: String? = null)
Content copied to clipboard
Parameters
groupName
An optional artifact group name. This is the {group}
part in Gradle dependency notations like {group}:{module}:{version}
.
moduleName
The module name or the name of a local project. This is the {module}
part in Gradle dependency notations like {group}:{module}:{version}
.
packageName
The package name of the module. This typically needs to be the same as the value of the package
attribute of the manifest
element as defined in the AndroidManifest.xml
file within the module.
version
An optional version of the module. This is the {version}
part in Gradle dependency notations like {group}:{module}:{version}
.