Returns the package name the intent resolution is limited to

Returns null if not defined

Property definitions

android $ Intent :: package_name
	# Returns the package name the intent resolution is limited to
	# Returns `null` if not defined
	fun package_name: nullable String do
		var result = intent.get_package.to_s
		if result == "" then return null
		return result
	end
lib/android/intent/intent_api10.nit:724,2--730,4