Get and ID from a specific resource in res/res_type folder

Property definitions

android $ ResourcesManager :: other_id
	# Get and ID from a specific resource in `res/res_type` folder
	fun other_id(name, res_type: String): Int do
		sys.jni_env.push_local_frame(3)
		var return_value = android_resources.get_identifier(name.to_java_string, res_type.to_java_string, app_package.to_java_string)
		sys.jni_env.pop_local_frame
		return return_value
	end
lib/android/assets_and_resources.nit:282,2--288,4