Kivy ile yazdığım projemi Apk ya çevirip mobilde çalıştıramıyorum

Merhaba, öncelikle Kivyde çok yeniyim. Deneme amaçlı bir apk yazmak istedim .Ancak Apk ya çevirip telefona atınca program açılıp hemen kapanıyor. Kod pc de çok iyi çalışıyor ancak bunu Bluestacks’e atınca da aynı oluyor.

işte kod

from kivy.uix.screenmanager import ScreenManager, Screen
from kivy.app import App
from kivy.lang import Builder
from kivy.uix.screenmanager import ScreenManager, Screen
from kivy.core.window import Window
from kivy.uix.popup import Popup
import mysql.connector
from kivy.uix.floatlayout import FloatLayout
from kivy.uix.label import Label
from kivy.uix.button import Button

sm = ScreenManager()
Builder.load_string("""
:

StackLayout:  
    orientation : "lr-tb"   
    Button:
        size_hint:1.0,0.1
        text: 'SİPARİŞ EKLE'
        on_press: root.manager.current = 'siparisEkle'           

    Button:
        size_hint:1.0,0.1
        text: 'SİPARİŞ DÜZENLE'
        on_press: root.manager.current = 'siparisDuzenle'

    Button:
        size_hint:1.0,0.1
        text: 'SİPARİŞ TAMAMLA'
        on_press: root.manager.current = 'siparisTamamla'

<Siparis_Ekle>:

StackLayout:  
    orientation : "tb-rl"  
    Button:
        size_hint:0.07,0.05
        text: 'X'
        on_press: root.manager.current = 'menu'

    Label:
        size_hint: (1.0, 0.05)
        text:"TELEFON" 
        background_color: 1, 1, 1, 1
        
    TextInput: 
        id:telephone
        size_hint: (1.0, 0.05)
        
    Button:
        size_hint:1.0,0.1
        text: 'SORGULA'
        on_press:app.db_sorgula()  
        
        
        
        
    Label:
        size_hint: (1.0, 0.05)
        text:"" 
        background_color: 1, 1, 1, 1



    Label:
        size_hint: (1.0, 0.05)
        text:"İSİM" 
        background_color: 1, 1, 1, 1
    TextInput:  
        id:name
        size_hint: (1.0, 0.05)        


    Label:
        size_hint: (1.0, 0.05)
        text:"SOYİSİM" 
        background_color: 1, 1, 1, 1
    TextInput:  
        id:surname 
        size_hint: (1.0, 0.05)




    Label:
        size_hint: (1.0, 0.05)
        text:"ADRES" 
        background_color: 1, 1, 1, 1
    TextInput:  
        id:country
        size_hint: (1.0, 0.05)


    Label:
        size_hint: (1.0, 0.05)
        text:"ADRES 2" 
        background_color: 1, 1, 1, 1
    TextInput:  
        id:country2
        size_hint: (1.0, 0.05)
        
        
        
        

StackLayout:
    orientation : "rl-bt"
    Button:
        size_hint:1.0,0.1
        text: 'TAMAMLA'
        on_press: app.db_ekle() 

<Siparis_Duzenle>:

StackLayout:  
    orientation : "bt-rl"   
    Button:
        size_hint:1.0,0.1
        text: 'GERİ'
        on_press: root.manager.current = 'menu'   

<Siparis_Tamamla>:

StackLayout:  
    orientation : "bt-rl"   
    Button:
        size_hint:1.0,0.1
        text: 'GERİ'
        on_press: root.manager.current = 'menu'  

“”")

Declare both screens

class MenuScreen(Screen):
pass

class Siparis_Ekle(Screen):
pass

class Siparis_Duzenle(Screen):
pass

class Siparis_Tamamla(Screen):
pass

class TestApp(App):
con = mysql.connector.connect(
host="",
user="",
password="",
database=“zrn”,
autocommit=True

)
cursor = con.cursor()



def build(self,value=0):
    sm = ScreenManager()
    sm.add_widget(MenuScreen(name='menu'))
    sm.add_widget(Siparis_Ekle(name='siparisEkle'))
    sm.add_widget(Siparis_Duzenle(name='siparisDuzenle'))
    sm.add_widget(Siparis_Tamamla(name='siparisTamamla'))
    return sm

####----------------------------------------------------SİPARİŞ EKLE-------------------------------------------------------------------------------------

def son_sayi(self):#SON SAYI NUMARASINI VERİR
    say=0
    self.cursor.execute("select * from hali")
    tara=self.cursor.fetchall()

    for i in tara:
        say=i[0]
    return str(say+1)



def PopUP(self,pop_message):#POP UP MESAJI
    content = Button(text=pop_message,size_hint=(1,1))
    popup = Popup(content=content, auto_dismiss=False)
    content.bind(on_press=popup.dismiss)
    popup.open()




def Temizle(self):#EKRANI TEMİZLE
    self.root.get_screen('siparisEkle').ids.name.text=""
    self.root.get_screen('siparisEkle').ids.surname.text=""
    self.root.get_screen('siparisEkle').ids.country.text=""
    self.root.get_screen('siparisEkle').ids.country2.text=""






def db_ekle(self):#DB YE EKLER
    telefon=self.root.get_screen('siparisEkle').ids.telephone.text
    isim=self.root.get_screen('siparisEkle').ids.name.text
    soyisim=self.root.get_screen('siparisEkle').ids.surname.text
    adres=self.root.get_screen('siparisEkle').ids.country.text
    adres2=self.root.get_screen('siparisEkle').ids.country2.text


    if len(telefon)>5:
        if len(telefon)>5 and len(isim)>1 and len(adres)>1:
            if self.db_sorgula() == True:

                add_musteri="""INSERT INTO zrn.musteri (telefon,isim,soyisim,adres,adres2) VALUES(%s,%s,%s,%s,%s)"""

                data_musteri=(telefon,isim.upper(),soyisim.upper(),
                     adres.upper(), adres2.upper())

                self.cursor.execute(add_musteri,data_musteri)
                self.con.commit()




                durum=0

                add_hali="""INSERT INTO zrn.hali (musteri_telefon,musteri_durum) VALUES(%s,%s)"""

                data_hali=(telefon, durum)

                self.cursor.execute(add_hali,data_hali)

                self.con.commit()

                Pop_Txt="İŞLEM BAŞARILI "+"SPNO :"+self.son_sayi()
                self.PopUP(Pop_Txt)
                self.Temizle()





            else:


                durum = 0

                add_hali = """INSERT INTO zrn.hali (musteri_telefon,musteri_durum) VALUES(%s,%s)"""

                data_hali = (telefon, durum)

                self.cursor.execute(add_hali, data_hali)

                self.con.commit()

                Pop_Txt="İŞLEM BAŞARILI "+"SPNO :"+self.son_sayi()
                self.PopUP(Pop_Txt)
                self.Temizle()


        else:
            self.PopUP("TELEFON,İSİM,ADRES BOŞ BIRAKILAMAZ")
    else:
        self.PopUP("TELEFON NUMARASI HATALI")



def db_sorgula(self):
    try:
        self.Temizle()
        telefon=self.root.get_screen('siparisEkle').ids.telephone.text
        self.cursor.execute("select * from musteri")
        tara=self.cursor.fetchall()
        say=0
        for i in tara:
            if i[0]==int(telefon):
                say+=1

        if say==0:
            return True

        else:
            self.cursor.execute("select * from musteri")
            tara = self.cursor.fetchall()
            for i in tara:
                if i[0] == int(telefon):
                    self.root.get_screen('siparisEkle').ids.name.text = i[1]
                    self.root.get_screen('siparisEkle').ids.surname.text = i[2]
                    self.root.get_screen('siparisEkle').ids.country.text = i[3]
                    self.root.get_screen('siparisEkle').ids.country2.text = i[4]
            return False

    except ValueError:
        self.PopUP("TELEFON NUMARASI HATALI")

if name == ‘main’:
TestApp().run()

Buda Buildozer çıktısı

[INFO]: Detected highest available build tools version to be 31.0.0-rc2
[DEBUG]: → running gradlew assembleDebug
[DEBUG]: Downloading https://services.gradle.org/distributions/gradle-6.4.1-all.zip
[DEBUG]: …
[DEBUG]: Unzipping /root/.gradle/wrapper/dists/gradle-6.4.1-all/ihamk9lkfdnk0vct06i4nheil/gradle-6.4.1-all.zip to /root/.gradle/wrapper/dists/gradle-6.4.1-all/ihamk9lkfdnk0vct06i4nheil
[DEBUG]: Set executable permissions for: /root/.gradle/wrapper/dists/gradle-6.4.1-all/ihamk9lkfdnk0vct06i4nheil/gradle-6.4.1/bin/gradle
[DEBUG]:
[DEBUG]: Welcome to Gradle 6.4.1!
[DEBUG]:
[DEBUG]: Here are the highlights of this release:
[DEBUG]: - Support for building, testing and running Java Modules
[DEBUG]: - Precompiled script plugins for Groovy DSL
[DEBUG]: - Single dependency lock file per project
[DEBUG]:
[DEBUG]: For more details see Gradle 6.4.1 Release Notes
[DEBUG]:
[DEBUG]: Starting a Gradle Daemon (subsequent builds will be faster)
[DEBUG]:
[DEBUG]:
[DEBUG]: > Starting Daemon> Starting Daemon > Connecting to Daemon> IDLE<-------------> 0% INITIALIZING [95ms]> Evaluating settings<-------------> 0% INITIALIZING [196ms]<-------------> 0% INITIALIZING [296ms]<-------------> 0% INITIALIZING [395ms]<-------------> 0% INITIALIZING [495ms]<-------------> 0% INITIALIZING [595ms]<-------------> 0% INITIALIZING [695ms]<-------------> 0% INITIALIZING [795ms]<-------------> 0% INITIALIZING [895ms]<-------------> 0% INITIALIZING [995ms]<-------------> 0% INITIALIZING [1s]<-------------> 0% CONFIGURING [1s]> Loading projects> root project> root project > Compiling /content/.buildozer/android/platform/build-armeabi-v<-------------> 0% CONFIGURING [2s]> root project> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > gradle-3.1.4.pom<-------------> 0% CONFIGURING [3s]> root project > Resolve dependencies of :classpath
[DEBUG]: <-------------> 0% CONFIGURING [4s]> root project > Resolve dependencies of :classpath > gradle-core-3.1.4.pom> root project > Resolve dependencies of :classpath > bundletool-0.1.0-alpha01.> root project > Resolve dependencies of :classpath> IDLE> root project > Resolve dependencies of :classpath > compilerCommon-3.1.4.pom> root project > Resolve dependencies of :classpath > kotlin-stdlib-jre8-1.2.0.> root project > Resolve dependencies of :classpath > transform-api-2.0.0-depre> IDLE> root project > Resolve dependencies of :classpath > asm-5.1.pom> root project > Resolve dependencies of :classpath > ow2-1.3.pom> root project > Resolve dependencies of :classpath > asm-parent-5.1.pom> IDLE> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > asm-util-5.1.pom> root project > Resolve dependencies of :classpath > proguard-gradle-5.3.3.pom> root project > Resolve dependencies of :classpath > jopt-simple-4.9.pom> IDLE> root project > Resolve dependencies of :classpath<-------------> 0% CONFIGURING [5s]> root project > Resolve dependencies of :classpath > guava-parent-22.0.pom> root project > Resolve dependencies of :classpath > auto-parent-3.pom> IDLE> root project > Resolve dependencies of :classpath > error_prone_annotations-2> root project > Resolve dependencies of :classpath > protobuf-parent-3.4.0.pom> root project > Resolve dependencies of :classpath > error_prone_parent-2.1.2.> IDLE> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > sdk-common-26.1.4.pom> root project > Resolve dependencies of :classpath > common-26.1.4.pom> root project > Resolve dependencies of :classpath > ddmlib-26.1.4.pom> IDLE> root project > Resolve dependencies of :classpath > shared-26.1.4.pom> root project > Resolve dependencies of :classpath > protos-26.1.4.pom > 1 KB/<-------------> 0% CONFIGURING [6s]> root project > Resolve dependencies of :classpath > javawriter-2.5.0.pom> root project > Resolve dependencies of :classpath > bcpkix-jdk15on-1.56.pom> root project > Resolve dependencies of :classpath > bcprov-jdk15on-1.56.pom> root project > Resolve dependencies of :classpath > asm-tree-5.1.pom> root project > Resolve dependencies of :classpath > fastutil-7.2.0.pom> root project > Resolve dependencies of :classpath > json-simple-1.1.pom> root project > Resolve dependencies of :classpath > kotlin-reflect-1.2.0.pom> IDLE> root project > Resolve dependencies of :classpath > baseLibrary-3.1.4.pom> root project > Resolve dependencies of :classpath > antlr4-4.5.3.pom> root project > Resolve dependencies of :classpath > antlr4-master-4.5.3.pom> root project > Resolve dependencies of :classpath > juniversalchardet-1.0.3.p> IDLE> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > commons-io-2.4.pom> root project > Resolve dependencies of :classpath > gson-parent-2.7.pom> root project > Resolve dependencies of :classpath > commons-parent-25.pom> IDLE> root project > Resolve dependencies of :classpath > apache-9.pom<-------------> 0% CONFIGURING [7s]> root project > Resolve dependencies of :classpath > kotlin-stdlib-jre7-1.2.0.> root project > Resolve dependencies of :classpath > kotlin-stdlib-1.2.0.pom> root project > Resolve dependencies of :classpath > proguard-base-5.3.3.pom> IDLE> root project > Resolve dependencies of :classpath > animal-sniffer-annotation> root project > Resolve dependencies of :classpath > animal-sniffer-parent-1.1> root project > Resolve dependencies of :classpath > mojo-parent-34.pom> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > commons-compress-1.12.pom> root project > Resolve dependencies of :classpath > httpclient-4.2.6.pom> root project > Resolve dependencies of :classpath > httpclient-4.2.6.pom > 4 > root project > Resolve dependencies of :classpath > project-7.pom> root project > Resolve dependencies of :classpath > apache-16.pom> IDLE> root project > Resolve dependencies of :classpath > httpmime-4.1.pom<-------------> 0% CONFIGURING [8s]> root project > Resolve dependencies of :classpath > httpcomponents-client-4.1> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > kxml2-2.3.0.pom> root project > Resolve dependencies of :classpath > annotations-13.0.pom> root project > Resolve dependencies of :classpath > all-1.2.0.pom> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > jaxb-runtime-2.2.11.pom> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > jaxb-parent-2.2.11.pom> root project > Resolve dependencies of :classpath > jaxb-bom-2.2.11.pom<-------------> 0% CONFIGURING [9s]> root project > Resolve dependencies of :classpath > jvnet-parent-4.pom> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > httpcomponents-core-4.2.5> root project > Resolve dependencies of :classpath > commons-parent-5.pom> IDLE> root project > Resolve dependencies of :classpath > apache-4.pom> root project > Resolve dependencies of :classpath > commons-parent-22.pom> root project > Resolve dependencies of :classpath > jvnet-parent-3.pom> root project > Resolve dependencies of :classpath > fastinfoset-project-1.2.1> root project > Resolve dependencies of :classpath > jaxb-txw-parent-2.2.11.po> root project > Resolve dependencies of :classpath > jaxb-api-2.2.12-b140109.1> IDLE> root project > Resolve dependencies of :classpath > istack-commons-runtime-2.> root project > Resolve dependencies of :classpath<-------------> 0% CONFIGURING [10s]> root project > Resolve files of :classpath > gradle-core-3.1.4.jar> root project > Resolve files of :classpath > gradle-3.1.4.jar> root project > Resolve files of :classpath > gradle-core-3.1.4.jar > 188 KB/2> root project > Resolve files of :classpath > gradle-3.1.4.jar > 70 KB/115 KB > root project > Resolve files of :classpath > gradle-core-3.1.4.jar > 797 KB/2> root project > Resolve files of :classpath > builder-3.1.4.jar> root project > Resolve files of :classpath > gradle-core-3.1.4.jar > 2.20 MB/> root project > Resolve files of :classpath > builder-3.1.4.jar > 37 KB/26.35 > IDLE> root project > Resolve files of :classpath > builder-3.1.4.jar > 361 KB/26.35> root project > Resolve files of :classpath > compilerCommon-3.1.4.jar> root project > Resolve files of :classpath > builder-3.1.4.jar > 976 KB/26.35> root project > Resolve files of :classpath > manifest-merger-26.1.4.jar> root project > Resolve files of :classpath > builder-3.1.4.jar > 3.30 MB/26.3> root project > Resolve files of :classpath > builder-3.1.4.jar > 8.41 MB/26.3> root project > Resolve files of :classpath > builder-3.1.4.jar > 12.50 MB/26.<-------------> 0% CONFIGURING [11s]> root project > Resolve files of :classpath > builder-3.1.4.jar > 14.33 MB/26.> root project > Resolve files of :classpath > builder-3.1.4.jar > 18.02 MB/26.> root project > Resolve files of :classpath > builder-3.1.4.jar > 20.25 MB/26.> root project > Resolve files of :classpath > builder-3.1.4.jar > 22.87 MB/26.> root project > Resolve files of :classpath > builder-3.1.4.jar > 26.02 MB/26.> root project > Resolve files of :classpath > builder-3.1.4.jar > 26.16 MB/26.> IDLE> root project > Resolve files of :classpath > sdk-common-26.1.4.jar > 48 KB/1.> root project > Resolve files of :classpath > sdk-common-26.1.4.jar > 1008 KB/<-------------> 0% CONFIGURING [12s]> root project > Resolve files of :classpath > sdklib-26.1.4.jar > 32 KB/662 KB> root project > Resolve files of :classpath > sdklib-26.1.4.jar > 512 KB/662 K> root project > Resolve files of :classpath > auto-value-1.5.2.jar> IDLE> root project > Resolve files of :classpath> root project > Resolve files of :classpath > ddmlib-26.1.4.jar > 32 KB/330 KB> root project > Resolve files of :classpath > tracker-26.1.4.jar > 3 KB/20 KB > root project > Resolve files of :classpath > layoutlib-api-26.1.4.jar> root project > Resolve files of :classpath > shared-26.1.4.jar > 3 KB/22 KB d> IDLE> root project > Resolve files of :classpath > dvlib-26.1.4.jar > 3 KB/28 KB do> root project > Resolve files of :classpath > protos-26.1.4.jar> root project > Resolve files of :classpath > aapt2-proto-0.1.0.jar> root project > Resolve files of :classpath > protos-26.1.4.jar > 3 KB/2.05 MB> root project > Resolve files of :classpath > builder-model-3.1.4.jar> root project > Resolve files of :classpath > protos-26.1.4.jar > 32 KB/2.05 M> root project > Resolve files of :classpath > bcprov-jdk15on-1.56.jar > 2.30 M<-------------> 0% CONFIGURING [13s]> root project > Resolve files of :classpath > protos-26.1.4.jar > 144 KB/2.05 > root project > Resolve files of :classpath > fastutil-7.2.0.jar > 2.95 MB/16.> root project > Resolve files of :classpath > protos-26.1.4.jar > 1.79 MB/2.05> root project > Resolve files of :classpath > fastutil-7.2.0.jar > 12.31 MB/16> root project > Resolve files of :classpath > kotlin-reflect-1.2.0.jar > 1.62 > IDLE> root project > Resolve files of :classpath> root project > Resolve files of :classpath > annotations-26.1.4.jar> root project > Resolve files of :classpath > httpmime-4.1.jar > 23 KB/26 KB d> root project > Resolve files of :classpath> root project > Resolve files of :classpath > bundletool-0.1.0-alpha01.jar > 6> root project<-------------> 0% CONFIGURING [14s]<-------------> 0% CONFIGURING [15s]<-------------> 0% CONFIGURING [16s]<-------------> 0% CONFIGURING [17s]> root project > Compiling /content/.buildozer/android/platform/build-armeabi-v> root project<-------------> 0% CONFIGURING [18s]<-------------> 0% CONFIGURING [19s]<-------------> 0% CONFIGURING [20s]<-------------> 0% CONFIGURING [21s]<=============> 100% CONFIGURING [21s]> IDLE<-------------> 0% EXECUTING [21s]> :preBuild<-------------> 2% EXECUTING [21s]> :preDebugBuild<=------------> 8% EXECUTING [21s]> :compileDebugRenderscript<===----------> 28% EXECUTING [21s]> :mergeDebugResources<===----------> 28% EXECUTING [22s]<====---------> 34% EXECUTING [22s]> :processDebugManifest<=====--------> 40% EXECUTING [22s]> :processDebugResources<======-------> 48% EXECUTING [22s]> :compileDebugJavaWithJavac<======-------> 48% EXECUTING [23s]<======-------> 48% EXECUTING [24s]<======-------> 48% EXECUTING [25s]<======-------> 48% EXECUTING [26s]
[DEBUG]: > Task :compileDebugJavaWithJavac
[DEBUG]: Note: Some input files use or override a deprecated API.
[DEBUG]: Note: Recompile with -Xlint:deprecation for details.
[DEBUG]: Note: Some input files use unchecked or unsafe operations.
[DEBUG]: Note: Recompile with -Xlint:unchecked for details.
[DEBUG]:
[DEBUG]:
[DEBUG]:
[DEBUG]: <========-----> 65% EXECUTING [26s]> IDLE> IDLE> :mergeDebugAssets<========-----> 68% EXECUTING [26s]> :transformClassesWithDexBuilderForDebug<========-----> 68% EXECUTING [27s]<========-----> 68% EXECUTING [28s]<========-----> 68% EXECUTING [29s]<=========----> 74% EXECUTING [29s]> :transformDexArchiveWithDexMergerForDebug<==========—> 77% EXECUTING [29s]> :mergeDebugJniLibFolders<==========—> 80% EXECUTING [29s]> :transformNativeLibsWithMergeJniLibsForDebug<==========—> 82% EXECUTING [29s]> :transformNativeLibsWithStripDebugSymbolForDebug<==========—> 82% EXECUTING [30s]
[DEBUG]: > Task :transformNativeLibsWithStripDebugSymbolForDebug
[DEBUG]: /root/.buildozer/android/platform/android-ndk-r19c/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-strip:/content/.buildozer/android/platform/build-armeabi-v7a/dists/ZRN__armeabi-v7a/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/gdb.setup: File format not recognized
[DEBUG]:
[DEBUG]: Unable to strip library ‘1’ due to error /root/.buildozer/android/platform/android-ndk-r19c/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-strip returned from ‘/content/.buildozer/android/platform/build-armeabi-v7a/dists/ZRN__armeabi-v7a/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/gdb.setup’, packaging it as is.
[DEBUG]:
[DEBUG]:
[DEBUG]:
[DEBUG]: <===========–> 88% EXECUTING [30s]> :transformResourcesWithMergeJavaResForDebug> IDLE<===========–> 91% EXECUTING [30s]> :validateSigningDebug<===========–> 91% EXECUTING [31s]<============-> 94% EXECUTING [31s]> :packageDebug<============-> 94% EXECUTING [32s]
[DEBUG]: Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
[DEBUG]: Use ‘–warning-mode all’ to show the individual deprecation warnings.
[DEBUG]: See Command-Line Interface
[DEBUG]:
[DEBUG]: BUILD SUCCESSFUL in 43s
[DEBUG]: 27 actionable tasks: 27 executed
[DEBUG]:
[DEBUG]:
[DEBUG]:
[DEBUG]: <-------------> 0% WAITING> IDLE> IDLE
[INFO]: ← directory context /content/.buildozer/android/platform/python-for-android
[INFO]: Of the existing distributions, the following meet the given requirements:
[INFO]: ZRN: min API 21, includes recipes (hostpython3, libffi, openssl, sdl2_image, sdl2_mixer, sdl2_ttf, sqlite3, python3, sdl2, setuptools, six, pyjnius, android, kivy, certifi, mysql_connector), built for archs (armeabi-v7a)
[INFO]: ZRN has compatible recipes, using this one
[INFO]: # Copying android package to current directory
[INFO]: # Android package filename not found in build output. Guessing…
[INFO]: # Found android package file: /content/.buildozer/android/platform/build-armeabi-v7a/dists/ZRN__armeabi-v7a/build/outputs/apk/debug/ZRN__armeabi-v7a-debug.apk
[INFO]: # Add version number to android package
[INFO]: # Android package renamed to ZRN__armeabi-v7a-debug-0.1-.apk
[DEBUG]: → running cp /content/.buildozer/android/platform/build-armeabi-v7a/dists/ZRN__armeabi-v7a/build/outputs/apk/debug/ZRN__armeabi-v7a-debug.apk ZRN__armeabi-v7a-debug-0.1-.apk
WARNING: Received a --sdk argument, but this argument is deprecated and does nothing.
No setup.py/pyproject.toml used, copying full private data into .apk.
Applying Java source code patches…
Applying patch: src/patches/SDLActivity.java.patch

Android packaging done!

APK ZRN-0.1-armeabi-v7a-debug.apk available in the bin directory