Unable to scroll on android native app Apiium 1.3.7

I am using appium-python-robotframework to automate my android native app. Have got stuck to a point where scroll doesn’t work. Have tried various methods. Did this work for anyone ?

el1= driver.find_element_by_name(‘Acura’)
el2= driver.find_element_by_name(‘Hyundai’)
action = TouchAction(driver)
action.press(el1).move_to(el2).release().perform()