How to remotely toggle application features? - android

I want to test two ad agencies on my application. I know there are some ad companies that merge all these companies together but that's not what I'm looking for. I want to be able to control application features remotely. Is there a service such as flurry or such that gives the option to change settings remotely? Or do I have to implement my own? This feature is strictly for developer use and not the actual application users.
Hopefully what I'm asking is understandable...
Thanks!
-Jona

check out www.adwhirl.com
.I'm using it and it's perfect!

I think your best bet is to implement your own solution.
Make your apps communicate with a server on startup and read settings from there.
Also, Android supports push notifications from the 'cloud'. Maybe something to consider.

Related

How to use custom Google Assistant commands without "Let's talk to" and without IFTTT

I know this is broad question but I've spent counless hours searching for the right solution. Google provides at least 15 different types of Google Assistant connections all of them are different and I don't know which one to use for my project. The project is pretty simple - I would like to call dynamic url with parameters (webhook to my home server) from mobile Google Assistant.Example - I would say to my Android mobile phone
> Ok, Google set the TV volume to 50
and the assistant would call
GET "https://192.168.1.12/tv/volume/50
or
GET "https://192.168.1.12/?device=tv&action=volume&value=50
where 'tv', 'volume' and '50' are the dynamic parameters (not static) so I could also call
> Ok, Google set the TV channel to 132
I just want a link or a name of the Google dev console that I can use. I don't want to waste another several hours just to find out that another Google package is not suitable for my project. Have anyone done something similar?
PS
I know that I could achieve something similar with "Ok, Google let's talk to ...." but that is not my case.
also I CAN'T USE IFTTT
There's no one-click mechanism to do this directly in Assistant. The smart home platform allows you to configure a service that would capture commands such as Channel and Volume and let you handle those commands in the way you want, using a cloud backend and optionally the Local Home SDK.
This may be a bit more work than you want, and you may want to consider existing smart home platforms which may handle some of the backend work such as https://homeassistant.io which does have an Assistant integration already, though I'm less sure of whether it may work in your use case.
It's hard to answer your question without knowing your constraints. Are you a developer? Are you looking to make a commercial app? For non-commercial use you can use the Google Assistant Service to create custom commands that do whatever you want (including call your API). As a benefit, you don't have to say "hey Google" before your command.
Also, it would help to know why you can't use IFTTT, given that it seems to do exactly what you're asking for.

Make my app the default for NFC payments (android)

I'm looking for a way to check if my app is the default option in Tap & Pay and, if the user choses to, make it the default.
My app is developed in Ionic, but i think that for this i will need to make a java/kotlin plugin.
I've been looking for a few days and didn't came across any idea for this.
Thank you!

Can we build Mobile app with bubble.is that has support for video calling from the app?

I am exploring the possibility to make mobile apps using bubble.is and we intend to have a feature where the app user can do a video call and talk with us.
Do you think we can use some exisiting thing to integrate with bubble.is app to accomplish this ?
Yes, you can use GoNative to make a mobile app using bubble.is and Gruveo or a similar service to do this.
The positioning with Gruveo is a bit difficult if you want your app to be responsive (tablets? desktop?) but its doable.

Connecting iOS, Android, and Rails App to One Database

My friends and I are developing a rails app (ruby), iOS app (swift), and android app (java). We are trying to figure out the best way to connect them all.
From our current research, we are under the impression that an API will need to be created with rails and the mobile apps will then have to communicate with that. Is this the only solution? I am also understand that apps can "pull" data from an api, but what about the other way around? We would like each application to be congruent with each other... for example, a record is created in the iOS app. As soon as this happens, the record should also be able to found on the rails app.
When thinking about it, it seems like all we would need is one database, and then have all of the apps connected to it. Would something like this work?
Having trouble finding solid information regarding this. If you know of any documentation, please pass it my way.
The best way is to host database in cloud and access to that common database from all applications. If you host your database with any hosting provider, they will give you a connection string using which you can access from any application. See Amazon AWS for example.
As I understand it, the popular way to interface with your database would be to expose it through a REST framework. Doing this, it doesn't matter how many apps you want to be able to interact with the data, or what platform they are on.
Also, check out Kivy as an option for your mobile implementation, as it allows you to deploy to iOS and Android from a single code base. Of course, you may need to account for differences in hardware APIs, etc... But that would be easier, IMO, than maintaining multiple code bases.

android communication between devices

I'm writing an android App which is basically finished and functions well on a single device.
I now need to create a communication between two different machines and to send information back and forth.
the problem is that I have zero knowledge about how do this, and all the different guides didn't gave any begginers information about it.
I understood that I need to use a third party server, but couldn't find information where to purchase one, and how to communicate with it.
can you please tell me which technologies I should inquire about? what should I study? what API's should be helpful for me?
Regards,
Vladimir.
I think App Engine is the best choice for you.
AppEngine

Categories

Resources