I am trying to upload my game to the play store. I created an apk file from buildozer and now I want to create a .aab file to upload it on google console. I searched some tutorials on YouTube and tried to convert the file on android studio, but I was unsuccessful in it. Can anyone please suggest to me some other ways to convert the file to .aab or how to successfully create it on the android studio? Thanks :)
Related
I am making a search engine for Linux system.
I have done with the code but don't know how to convert python to app image.
Is there anyway to convert it?
I have to add this for stack-overflow to let me upload
I have recently made a simple Hangman game and converted it into a .app file using Py2App. However, when I tried to send the folder(after zipping) to my friend via email, there is no actual application in the receiver's file.
Can you guys please help me how can I share .app file from py2app via email or is there anything or any platform through which I can share my file?
Thanks,
if you use gmail, try to upload the .app file or the zip file on your google drive cloud and share the link to your friend. go to the shared link and download your file! if you don't know how to do this check this video https://www.youtube.com/watch?v=77CmlRucp-Q
I'm trying to create a simple "Hello World" application for android using Kivy in Python but I'm receiving an error when i try to install the application on my phone.
The error is:
"There was a problem parsing the package"
Does anyone know how to fix this problem?
This is the YouTube tutorial that i followed to create my APK file:
https://www.youtube.com/watch?v=yr7n0C2tspI
Okay i didn't follow the YouTube video exactly,
Instead of uploading the APK file to a google drive/onedrive i transferred it manually through a cable to my phone.
I think that doing it manually corrupts the file or something because i tried doing it through google drive and it works!
I'm new here. Recently I'm developing android app based on Python Kivy. my app is about downloading post from Instagram and save it in android local storage. Its work fine in my android (Oppo A3s with android 8.1) but when I tested it to my friend's phone, which is newer version of android than me (android 10) its failed. When I run adb, it said permission denied. I was wondering and find solution on Internet and they said android 10 and newer not allowing to write directly to the storage (example: /sdcard/DCIM/Camera)
my question is: How to solve this and how to write file to /sdcard/DCIM/Camera in android 10? or how to save file in public storage that other app can use that files too?
Thanks lot for help :)
I have been searching for hours trying to find out how I could edit an Excel file saved to OneDrive using python and have had no luck. Help if you know how/if it is possible.
#JeremiahTrest Welcome to Stackoverflow. I don't think that's how OneDrive works. What I mean is, I don't think it's possible to directly edit a file that is saved to your OneDrive in the cloud with any language. What you would have to do is to get a copy of the file on the machine that is running the Python script, update the file on that machine and save it with the changes, then push the changed file to your OneDrive. I looked and found this SDK for Python that is meant to be able to help you interface with the OneDrive API. So, you would use this SDK to get the file from OneDrive, update the file locally, then use the SDK to push the changed file back out to OneDrive.
I came across this post as I have the same task. Here's what I'm going to try:
Use the request library on python to call the OneDrive API.
Here's the page on excel APIs:
enter link description here
I'll update when I have my code.