Problem with buildozer How can I correct this? - kivy

I have a problem with buildozer.
Every time I use the comand "buildozer android debug" and installing the apk file on my smartphone, it just shows the start screen of the app and than it crashes.
buildozer.spec file:
Link to buildozer.spec file
If I run the application on my Computer, it works.
On my Computer I run Ubuntu 20.04.4 LTS 64 Bit.
I downgraded buildozer from dev version to 1.3.0.
Thanks for helping.
Here is my log file: https://github.com/tct123/example-buildozer.spec/blob/main/my_log.txt

Related

How to launch Electron JS build on Linux?

I am trying to launch my ElectronJS app on Linux but impossible to get there.
This is my build process :
On Windows, I building the app for Linux with electron-packager, for amd64 arch.
I copy the folder generated on my Ubuntu machine and I create a .deb with electron-installer-debian package.
I install the application with dpkg -i my-app.deb.
In Ubuntu navigation, i found my application. But when I click on it for launch, nothing is happening...
Ideas ?

Use Latest Version of Python 3 When Launching IDLE

I used homebrew to install a new version of Python3 on my Mac. The version I installed is Python 3.7.
When I launch "idle3" from terminal, the shell still displays "Python 3.6.0 Shell" at the top of the window.
Is there some way to configure idle to "use" the latest version of Python 3 that I installed using Homebrew?
The version of idle3 provided by homebrew is located in /usr/local/bin. This location should appear first in your PATH.
Edit your ~/.bash_profile file and add at the end:
export PATH="/usr/local/bin:$PATH"

How To Update Spyder 3.3.0

I currently use Spyder 3.2.8 with Anaconda/Miniconda. When I open the Spyder editor, a Spyder update window pops up and shows Spyder 3.3.0 is available. It also indicates that "please wait until new conda packages are available and use conda to perform the update".
I followed the direction using anaconda prompt to update. My computer shows the packages were already installed successfully. However, my Spyder Editor is still the version 3.2.8 I also used Anaconda Navigator to update by clicking on the "gear" but no luck. How can I update from Spyder 3.2.8 to 3.3.0? Thank you!!!!
The only thing which really did the trick is
conda install spyder=3.3.0
so in this case you have to explicitly provide the package version.
I have a clean anaconda 5.2.0 installation.
Update: after that i can "conda update spyder" and everything is consistent (for 3.3.1 and further versions)
(Spyder maintainer here) If you already tried to update (either through Navigator or in a system terminal) and you didn't get a new version, that means that conda packages are still unavailable and you have to wait a couple more days to perform the update.
You can get it from conda-forge:
conda install -c conda-forge spyder
https://anaconda.org/anaconda/spyder
As you can see in that internet address, there is only 3.3.0 version for linux and osx.
I think that 3.3.0 version for window would be a little late.

How to install appium in elemantary os

I am new to appium. How can I install appium in elemantory os. I downloaded the appium from official site. A dmg file is downloaded. But dont know how to move further.
.dmg file is OS X package. You don`t need it.
According to this page on Appium`s official web site: http://appium.io/downloads.html
Appium Desktop app is available only on Windows and OS platforms.
On Linux you need to install it as Node package.
Appium won't run if node/npm are install as a privileged (sudo) user. So you`ll have to use another way to install them. You can use Linux version of Homebrew( https://github.com/Linuxbrew/linuxbrew ) or download node binaries ( https://nodejs.org/en/download/ ) and place them in your home folder.
You may add an environmental variable for appium. To do it open ~/.bashrc file and add this string to the end:
export PATH=$PATH:/bin
And then reread that file:
source ~/.bashrc
Install Appium:
npm install -g appium
Run appium:
appium&
Elementary OS is very similar to Ubuntu. You may found a lot of information how to install Appium on Ubuntu. For example check this link:
How to setup Appium in Ubuntu for android

Kinect RGBDemo v0.6.1 in QTcreator

I would like to get this demo running in my QTcreator. I' running this on osx 10.7 and i have the latest opencv installed. I can run this demo outside the qt creator but that's all. I was wondering how to make this work as a QTcreator project.
This can be solved by opening the cmake file in qtcreator it will then load all the files an can be compiled .

Resources