Is there any way to display the WebView(Payment gateway page in particular) in android wear? I have done some investigations and wear doesn't seem to support it as of now.
link1
link2
According to answers in the above link, I need to load the WebView in phone and send the rendered image to the Watch. But user won't be able to enter anything in webview input filelds. Is there anyway to achieve this? Thanks in advance.
No, it is not possible.
As specified here by Google, the android.webkit API isn't supported in Android Wear.
Moreover, what you're trying to achieve seems wrong. There is no way a user will ever manage or want to enter its credit card (or other) credentials from a smartwatch. Remember that there is no (official) keyboard on Android Wear ! The only inputs are gestures and voice.
Google probably discarded the webkit API to avoid seeing such things in Wear apps ;)
You can actually reach that goal! Not sure on what was the strategy used but there's a fully working browser on Android Wear https://play.google.com/store/apps/details?id=com.appfour.wearbrowser
You can do by following below link. I have done,It is working for me.
https://crosswalk-project.org/documentation/android/embedding_crosswalk_rvw.html
Related
In my app when I try to use my app link from Google Chrome it works perfectly, but when I use Samsung Internet I find that the deep links don't work, and the URLs open in the browser instead.
Is there a list of compatible/incompatible internet browsers and/or phones that do not support Android App Links?
Or is there something potentially wrong with my app links implementation?
Unlike iOS that pushes hard to the use of Universal Links, Google doesn't do that and therefore any browser on Android can decide if they want to use App Links or not.
Most of the browsers usually blocks the use of App Links so there is a need for URI scheme as a fallback to make sure users will get to your app correctly.
I know there is already correct answer for the question. But I had this same issue with Samsung Internet and was able to solve it by enabling
Settings > Internet Settings > Open links in other apps
Hope this tip might help someone who see the question in the future.
I don't know it is suitable place for this question or not, if this is not the right place please redirect me to the right one. i am asking this question after spending 3-4 days. Please be with me.
I have a web app/Mobile app(Android and iOS) something like small ERP application. We want audio calling feature for the application, we have been looking for days but didn't get a suitable solution.
Our Requirement is
Browser - Browser Calling,
App to browser,
App to App,
browser to app
we don't need internet to phone feature. Ultimately we are looking for a solution that will allow user to call directly without knowing the phone number.
In my research i came across WebRTC, but didn't understand the logic.
so if there is any way (library or something) (free/paid), any kind of information will be helpful (article/library/webpage/explanation). To give me a path to move forward with the research.
thanks.
Paid Library :
1) Zipper -- It has native sdk for mobile and Javascript sdk for mobile or web. https://www.zoiper.com/en/voip-sdk
2) ToxBox is also good library for voice call. https://tokbox.com/
Open Source :
Try Linphone- Its good for voice calling - they also provide sdk for Mobile and web.
https://www.linphone.org
Open Source
http://www.pjsip.org/ - SIP platform based
Good morning everyone,
I am facing an issue with both my Android and iOS apps. While they use webviews, we just had a requirement coming in to open the external browsers in order to reach our payment portal. For iOS especially, as part of the iOS guidelines this is preventing my app from getting accepted unfortunately.
I know how to open the browser externally, however I cannot close it as easily. It seems to boil down to it being a different application all together opened from either my android or iOS code. In this aspect window.close() or something similar does not work.
My question is, is there a trick to it using custom url schemes, all I am trying to achieve is to press a button in my external browser and close said browser which would bring my app back to front.
Or is there some kind of custom intent library for android which could help me achieve the same result.
Any hint would be appreciated, as my research so far as not been very fruitful.. Thank you in advance.
I have searched a lot regarding In App search in android, What i ended up http://developer.android.com/training/app-indexing/index.html
https://developers.google.com/app-indexing/
and few application on Play store like Andro search. But what I am looking for is precise search in internal application installed on my phone. Say, there is linkedIn, some News app, or any image editor app, or dropbox then the search should be able to fetch the result from inside these apps.
Any help would be much appreciated.
Maybe it might be useful to search for the application you want from Google. Google also shows the applications on the phone.
I'm in the same quest? Looks like Android don't have anymore this feature, I can't find this feature on the new released Android 10. Only the Samsung Galaxy seems to have this feature in the world of Androids, this is very sad.
Does anyone have any suggestions for the best way to create a web link that, depending on the device the user is browsing with will direct them to a website (for laptop/desktops), the App Store (for iOS devices), the Play Store (for Android devices) or the Win8 store, with a default to the website if device type is unknown?
At the moment, the best option seems to be to direct users to a website exclusively, with smart banners that will show a link to the App Store on relevant devices using the following code in the site header:
<meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL">
But this is inelegant and can be missed by site visitors plus the additional step leads to a high dropoff. Any suggestions or thoughts would be appreciated!
Rather delayed reply but here goes:
Detect which OS is being used using Javascript code. Link
Change the hyperlink based on whether it is an iPhone Android or Windows.
If its iPhone use this, if its Android use this and for Windows use this
Hope that helped!