have a code that loads an image online with the AsyncImage module in kivy. i wrote the code in python3 which runs well on the pc but doesnt work on a packaged apk. i think this is because i packaged it using python2.7 buildozer. thanks an image showing the error in logcat
this is the code.
class Gallery(Screen,GridLayout):
scroller = ObjectProperty(None)
grid = ObjectProperty(None)
def __init__ (self,**kwargs):
super(Gallery, self).__init__(**kwargs)
if len(self.ids.grid.children) == 0:
for i in range(13):
src = "http://placehold.it/480x270.png&text=slide-%d&.png" % i
image = MyTile(source=src, allow_stretch=True)
self.ids.grid.add_widget(image)