Quick Links:
Download Gideros Studio
|
Gideros Documentation
|
Gideros community chat
|
DONATE
Check if user has a specific app installed — Gideros Forum
Home
Discussions
Sign In
Home
›
General questions
Sign In
·
Register
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Quick Links
Categories
Recent Discussions
Categories
7.8K
All Categories
11
Help with translations
4.2K
General questions
107
Roadmap
358
Game & application design
316
Plugins
70
User experience
75
Marketplace
291
Code snippets
34
Building a team?
269
Suggestions & requests
352
Announce your apps made with Gideros.
90
Step by step tutorials
668
Bugs and issues
195
Introduce yourself
239
Announcements
106
Forum talk
404
Relax cafe
In this Discussion
June 2015
totebo
June 2015
ar2rsawseen
May 2015
phongtt
Top Posters
ar2rsawseen
6991
SinisterSoft
4058
hgy29
3648
keszegh
3257
atilim
2892
antix
2136
MoKaLux
2013
OZApps
1983
totebo
1781
oleg
1706
hgvyas123
1412
techdojo
1321
pie
1194
gorkem
1186
rrraptor
1030
phongtt
1029
Mells
1024
MikeHart
1020
john26
995
GregBUG
962
Check if user has a specific app installed
totebo
Member
May 2015
edited May 2015
in
General questions
Is there a way to check whether the user has an app installed on their device on iOS and Android?
My Gideros games:
www.totebo.com
+1
-1
Share on Facebook
Comments
phongtt
Guru
May 2015
Google can give you the answer
On Android it should be straightforward.
On iOS, afaik you have to know the URL scheme of the app.
For both cases, a plugin is needed.
Greetings from Vietnam. We are mobile game/app development studio. Gideros/Unity/Cocos2d-x
+1
-1
Share on Facebook
ar2rsawseen
Maintainer
June 2015
Yep, similarly as
@phongtt
mentioned.
On Android if package is installed it is easy to check
But on IOS it is impossible to check package/bundle.
But if app implements some custom URL, then you can check if you can open custom URL, I think even Gideros
http://docs.giderosmobile.com/reference/gideros/Application/canOpenUrl
should do the trick.
So if other app is also yours, you can implement custom URL on both Android and IOS and check if it can be opened using canOpenUrl, thus you will know if your other app is installed.
http://appcodingeasy.com/Gideros-Mobile
+1
-1
Share on Facebook
totebo
Member
June 2015
That's great! Yeah, the other apps would be mine. Thanks guys!
My Gideros games:
www.totebo.com
+1
-1
Share on Facebook
Sign In
or
Register
to comment.
Powered by Vanilla
Comments
On Android it should be straightforward.
On iOS, afaik you have to know the URL scheme of the app.
For both cases, a plugin is needed.
On Android if package is installed it is easy to check
But on IOS it is impossible to check package/bundle.
But if app implements some custom URL, then you can check if you can open custom URL, I think even Gideros
http://docs.giderosmobile.com/reference/gideros/Application/canOpenUrl
should do the trick.
So if other app is also yours, you can implement custom URL on both Android and IOS and check if it can be opened using canOpenUrl, thus you will know if your other app is installed.