Skip to content

Instantly share code, notes, and snippets.

@aron-bordin
Created April 23, 2015 02:30
Show Gist options
  • Save aron-bordin/e72eeeb87a413d68b38a to your computer and use it in GitHub Desktop.
Save aron-bordin/e72eeeb87a413d68b38a to your computer and use it in GitHub Desktop.
__version__ = '1.0'
from kivy.app import App
from kivy.uix.label import Label
from plyer import uniqueid
class TestAndroidID(App):
def build(self):
return Label(text=str(uniqueid.id))
TestAndroidID().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment