Is it possible to interact with a third party (non flutter) android app from my flutter app? The third party app is called metatrader its a free stock and currency trading app , I am planning to make an app which can interact with metatrader android app, but I'm not sure if it's possible
there are some input fields in the metatrader app and I want to paste some data into the metatrader input fields from my app.
If it's possible then what's the best approach?
Related
I am working on a project that connects two user using opentok(tokbox now). It allows the users to be able to chat, do voice/video calls. But now we want that some admin can call another number even when they don't have my app installed.I want the admins to be able to call someone directly from the app and they shouldn't use their own phone.
Some example for this type of working is textnow, 2nd line, and much more apps like this.
So what i am asking here is that which third party services i can use in order to achieve this task.
If I create an application, which the user installs on his Android device, is it possible for that application, that from the background, it can access the currently opened browser tab, and if the user navigates to a specific domain with his browser, the app sends a push notification, or maybe notifies the user about a promotion on that domain?
well, for usual apps this isn't possible for security reasons obviusly. but it probably may be done using AccessibilityService. note that Google is filtering apps which have such big privileges and won't let your app to Play Store if it will be using AccessibilityService to such "trivial" operation (isn't very helpful, for sure isn't accessibility-kind-of)
I am developing an Android Application for examination purpose. This app will be used by students and professors. Student may attempt to verify the answer from other apps by using Internet during the exam. The client want's to restrict other android apps to use Internet service when the exam app is open. Is it possible to disable Internet Access of other apps when a particular app is open?
No, you can't. But in your 'exame app' you can check when your Activities are in foreground or not. If your app goes in background, you can assume that the student is trying to do something else. What about?
I am devloping a mobile app that access SMS I know if its doable in andriod if I am using GWT and in Iphone if I am using objective c. My Question is I want to use some framework that genrates native apps (for iOS and andriod) like titanium appaccerator jQuery Mobile ... etc
can some one tell me if I can access SMS on the mobile devices from the app wrttien using such tools?
On iOS you cannot access the user's SMS data from an app (at least not without jailbreaking) no matter what tool you use to create it. You can use the MFMessageComposeViewController to compose an SMS, but the user needs to interact with the view to actually send it - you cannot send an SMS without user interaction.
I can't help with Android I'm afraid.
I'm building a mobile application for a company and I need to add in the company mobile application a button that go directly in a different application .
Anyone know a solution to embed 1 mobile app in other app???
Inside the code of your button, you can launch an explicit/implicit intent that can launch another application (authored by someone else). The application won't be running inside your application, but to the user, he/she will have the illusion that the other application running is part of your own. This is assuming of course that the second application is already installed on the user's phone. If it isn't installed, your button can just fetch the relevant application's installation page from Google Play for the user to install the app, and then run the application once installed.
In your application, you can also provide a content provider to keep your data. A content provider provider exposes a set of public CRUD interfaces to your data for other applications to access. This is how the contacts database is shared on Android for instance between many different applications, even non-Google applications.
Basically, you first need start at the beginning and educate yourself on the fundamentals of Android. If you start reading about intents and content providers, those constructs may not make any sense to you until you first learn about Activities, the Activity's lifecycle, stacks/tasks, and the way security generally works on Android. You may even want to look on Youtube, there are some very good highly rated Google I/O videos on there that talk about the fundamental concepts of Android.