Created
April 23, 2015 02:30
-
-
Save nrbrd/e72eeeb87a413d68b38a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__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