Uploading split apk files using google api client edits method in python - python-3.x

Does anybody have any insight on whether or not the Google Play Publishing API will allow an upload with split APKs? I know there is a bundle method for app bundles, but my developer hasn't switched to this format yet.

Split APKs are only uploadable within app bundles (whether via the API or via the console UI).
However, if you don't mean "split APKs" but actually mean Multi-APK (having more than one variant of your APK sharded by eg native code ABI) then this is available via the API or UI, and the help page is here.

Related

Vue Frontend + NodeJS backend - local web app (browser)

I need to create an application which will be ran on the browser (local only, not hosted online). I will need to use a lightweight database which has a physical file (eg SQLite3, so I can have a .db file).
Also, just to mention:
I cant use IndexedDB alone to save the data because clearing browser data would clear the entire "database".
I also wouldn't be able to use electron since the bundle is too big. I need the browser for its portability
Also cant use PouchDB, since due to security constraints, online sync (CouchDB, etc) is not possible. Then it would be 100% stored in IndexedDB, which brings me back to my point on bullet 1
My question is - is there a way to create an offline web application build with VueJS frontend + NodeJS backend? I only need NodeJS because SQLite only works on the Node environment.
Deployment is preferably in .html only (is there any way that is possible, and access only using the file protocol file://)? Otherwise, I may consider using a local web server (localhost) - I'm not sure though if it is possible to serve an html file without any installations (node, python, etc), so I would still have to check all my options about this.
Any thoughts?
I am still new to this so please bear with me! There is very limited info online that talks about a 100% offline web application. Thanks a lot!

How to recover source code of Nodejs GAE project

I've an application which is deployed. I'd created simple get fetch services on cloud in a project and have deployed it. Unfortunately in confusion b/w the projects, I deleted the project. I can access the web service by fetching through urls but couldn't get the source code. Any help?
At the moment it's only possible to download Java, Python, PHP and Go application's source code.
What I can recommend you is to submit a Feature Request through this link asking for this feature also for Node.js. Also you may consider using Cloud Source Repositories, which is free and can help you mitigate this kind of issues in the future.

How to upload OneSignal SDK file in node js?

I want to use web push notification using onesignal. I create account on onsignal.com and i follow the steps (I choose chrome web push). But on step six is "Upload OneSignal SDK file". I download the files and i read the documentations but i couldn't understand it. I am using web app created on node js. Bellow I put the link of step 6 from OneSignal documentations.
https://documentation.onesignal.com/docs/web-push-typical-setup#section--span-class-step-step-6-span-upload-onesignal-sdk
Any help please. Thank you.
Actually it was simple, I was just confused and forgot some terms on node js. After some fight i fix it.
I just need to put the Unzipped file in my working directory (main root). Then make it publicly available. Simply like this, then it works.
app.use(express.static(path.("foldername")));

after creating the xamarin-android in azure, how do I download the backend as well

While learning how to create Android-xamarin-azure application, I must have done steps from different tutorials. I've just created a new test application, and this picture shows what's the final screen.
This screen is showing that I've already have a connection string and a Todo table. I remember that before I was able to download a backend project. Now, I'm just being told that I've already a table, but I don't know how to download the backend project.
I'd like to download the backend project as well, so that I can start expending it.
Thanks for helping
Just follow this link. It shows how to download backend project
https://azure.microsoft.com/en-us/documentation/articles/app-service-mobile-dotnet-backend-how-to-use-server-sdk/#create-app

Send Windows Phone Push Notifications using WebJobs & nodejs

I am currently using nodejs and a scheduled webjob to query a website and save some data to a json file for further consumption in a native Windows Phone app.
Now I'd like to add a feature where I can notify the users if new data was found on the website using push notifications.
Unfortunately I have not found any info on how one might do this or if that is even possible atm.
The https://github.com/tjanczuk/wns Node.js module serves this exact purpose.

Resources