Closed server41k closed 2 years ago
The issue seems related to https://pypi.org/project/KivyAuth/ This is not a Kivy project https://github.com/orgs/kivy/repositories I suggest you check the documentation at KivyAuth, perhaps https://github.com/shashi278/social-auth-kivy/blob/master/docs/prerequisites.md or ask at KivyAuth.
If you have Kivy usage questions please use the user groups.
👋 @server41k, we use the issue tracker exclusively for bug reports and feature requests. However, this issue appears to be a support request. Please use our support channels to get help with the project. Let us know if this comment was made in error, and we'll be happy to reopen the issue.
log:
buildozer.spec
from kivyauth.google_auth import initialize_google, login_google, logout_google from kivy.properties import StringProperty, NumericProperty from kivy.clock import Clock, mainthread from kivymd.app import MDApp from kivy.utils import rgba from kivymd.uix.screenmanager import ScreenManager from kivy.lang import Builder from kivy.core.window import Window import random import string import requests
Window.size = 360, 640 random_key = ''
def generate_random_string(length): global random_key letters = string.ascii_lowercase random_key = ''.join(random.choice(letters) for i in range(length)) print(f'Рандомная строка, символов:{length} : {random_key}')
class Container(ScreenManager): seconds_string = StringProperty(generate_random_string(20)) seconds_remaining = StringProperty('5') user_picture = StringProperty("")
class MyApp(MDApp): counter = NumericProperty(5)# i also tride with using file.kv method build the app Builder.load_string("""#:import QRCodeWidget kivy_garden.qrcode