I have two different Android mobile application. One is already developed and One I am developing. Now what I want Whenever anyone wants to install my developed application from the Google Play than both the application should be Installed.
Please suggest how it will be possible.
You would have to acquire Alphabet (Google's parent company), then order the developers of the Play Store to add this capability. Otherwise, what you want is not supported.
If you want all of this functionality to be installed, put it in one app, not two.
Related
I am looking to create a 3rd party android automotive of our currently existing android mobile application. The application will not be listed on the play store it is just for internal use. The issue that I am facing is that the SDK is limited and it seems that I can only create applications from a set of templates (Navigation, Media, Messaging). My mobile application uses its own custom map and functionalities. I checked that people used to create 3rd party apps before but google revoked access to this 3rd party sdk and that I have to ask google for access.
Can I make any apps for Android Auto?
Also, by going through the docs it's stated here "In order for your app to run on a real head unit (not the desktop head unit we provide), your app must be distributed through the Google Play Store."https://developer.android.com/training/cars/apps/auto#car-head-unit
If anyone can shed light on this whether custom apps are possible now for Android Auto and whether we have to go through the play store in order to use the app in a real head unit.
There are some issues with the wording of this question, so let's first clarify the differences between Android Auto and Android Automotive.
Android Auto is basically the projected mode. This means apps run on your phone and show on the head unit display (assuming your phone is connected to the car head unit).
Android Automotive is referred to the embedded mode. It is actually Android running as an independent OS in the head unit of the car.
So, with this in mind:
if you want to add support for Android Auto to your existing app, you can do so by using the androidx.car.app library. It provides you with some templates to build the UI/UX. This is the only way to get your app published on Google Play and distribute to other users. Even if you don't want to distribute the app on Google Play, I believe using templates is the only way to build an Android Auto app at the moment.
If what you want is to target Android Automotive, I bet you can run your current mobile app in the Android Automotive emulator. Again, here the only way to publish your app on Google Play is by relying on androidx.car.app. If you build your own UI without using those templates, your only possibility at the time of writing is to distribute it via third party app stores (or convince Google, ;p).
I published many versions so far. And, the users should use the most recent app. However, apkpure shows all the app list that I released.
How come this website take all the apk or abb? I don't want the website takes my applications and block the users in the app. Is there any way to do that?
Actually it's possible to do, using one of the Android features like app bundles. This could help you to verify non Google Play installation. Or even create behavior to crash/exit in such cases.
The whole idea of the approach, it's separation application features to different bundles which could installed be installed within Google play package manager. So you can check it's documentation.
Lots of android users can not access play store when removing the google restrictions, because they want apk file for install. Third party websites publish for that kind users, As well as some desktop users want APk file specially GAME APPs. I think they not Change original APK file.
Last time I've heard about running android app without installing it.
Like "demo app" or something like that.
What doest it mean?
Generally you have to go to Google Play in order to install the app and run it.
It isn't via a browser, because you can supposedly use the android app functions
Instant Apps are the next step in app evolution, a universal Android solution that brings the speed and power of a native app with the ease and immediacy of a web app. They look and operate just like one of the apps that are installed on your phone, but you don’t need to download anything.
Android Instant Apps allow you to use native Android apps in a form that doesn’t even require installing. Which means the users get to experience interactive and smooth interfaces with the tap of a finger.
Note: Android Instant Apps only work on Android devices running on Android 5.0 (API level 21) or higher.
For further info about instant apps you can refer to following link
https://developer.android.com/topic/instant-apps/overview.html#apps-features
An instant app is a portion of your app that will be executed in response to an Url. This was introduced by Google year.
Google play store will download the code necessary to execute the task it is supposed to and it will dispose of the code after the user is done.
You would create an Instant apps if you mean to provide specific feature of your app that does not require the user to download the full app. Ex: watch a video on vimeo by clicking a link on social media
This apps are built using the same process you would use to develop a regular android app but instead of developing all of the features in the same module you divide the features in different modules.
This modules should be very small and have a size limit of 4MB.
Instant apps are currently limited to a few countries, so if you are thinking of developing one and putting in production check the link below for this information and others documents on how to get started.
https://developer.android.com/topic/instant-apps/overview.html
It's Instant App.
Here you have Google documentation
I am currently working on enabling Google App Indexing (https://developers.google.com/app-indexing/webmasters/appindexingapi) in my Android app. Our web app however uses two apps, specialized for different use cases. The app I'm working on is the clear preference for which app should open a link from our website on Google Search but what if this one isn't installed and the other one is? Is there a way to open up a different Android app if the first one is not installed? Or does app indexing only associate one app with one link?
Thanks.
I have asked our Google contacts about this, their answer was: At the moment it is only possible to connect one app to your website. You have to decide which one you prefer.
I am creating an Android app which depends on some other android apps. So if these dependent apps are not already there on the users mobile, I would like to download them programmatically from play store. But during this process I don’t want the control to go to the Play store app (i.e. no Play store app activity should be visible).Is it possible to use some Api or functionality to do that? I found two link but I think that link. But I think such solution don't work no more.