Need to track downloads of App with referral - react-native

We have one requirement as there will be one link with QR code of stores, we will share these links with different different persons. From that link we will allow user to open google play store or apple store.
Now we want to track how many persons have downloaded mobile application for each Stores.
We have checked https://www.npmjs.com/package/react-native-check-app-install but its for all download, and we need referral download counts.
If Anyone have done same in react native then please give guidance on same.
Thanks in advance.

Related

How to upload images to different sub-collection in cloud firebase firestore in react

I'm creating a react shopping app that contain different collections of items like hat page, sneakers page, and others a great insight on what I mean. I want an admin of the app to be able to upload to a particular page he/she wish to, base on the form that will be filled before uploading. Implementing this awesome feature has been a problem on my neck and I hope to find a befitting suggestion or preferably,
a solution on how to go about this. I'll be highly thrilled if I can help be helped out. I'm using firebase storage and cloud firestore to handle files upload and database respectively. A million thanks in advance

How would I make my own feed/marketplace? [React Native]

I am so curious about how companies make their own marketplace within an application? I am trying to achieve a marketplace where individuals can sell products on a mobile application. So when a user logs into the app they are met with a live feed of various products. Something similar to the GOAT app, eBay, or Etsy. Usually, I know where to start, however, I have never dealt with an idea so complex. I know it can be done because it has been done multiple times over. However, I am asking if someone could provide me with some guidance. I did some Googling but came out empty-handed. Is there a video tutorial or a step-by-step guide on something like this? I also do not mind buying a course if I can achieve this effect!
Currently, what I have now are three pages! A working signup and login screen with a firebase backend that authenticates a user's email and password. It leads to my home page which is very basic. Just a header with tab navigation! I know it is very barebones... however I came here to see if I can be provided with some steps from here. Maybe even a proper technology stack.
Thank you in advance for any help!
Here are some examples of apps with live marketplaces:
https://appsftw.com/app/looklive-shopping-app-discover-celebrity-fashion
https://itunes.apple.com/us/app/shop-sell-save-with-ebay/id282614216?mt=8
https://itunes.apple.com/us/app/goat-shop-sneakers/id966758561?mt=8
Hey research marketplaces with ready app react-native template like this template e-commerce . But you need some knowledge about react-native or you can ask a freelancers.

Shopify get latest single review of a product

I need to fetch a single latest review given by user and display in a box on product detail page.
I have searched in google for shopify script and app but couldn't find any solution for this. If anybody have done this type of task then please help me.
Thanks in advance!
Shopify has a review App. When you use it in a shop, you can display reviews. Since you control the placement of the reviews, you are in a position to also inspect the reviews from DOM perspective and decide the latest, and what the markup looks like.
Since you know the markup, and you have access to the Shop, you can scrape the latest review using any screen scraper you want to use. With that, you can easily have each products newest review sent back to the App you installed in the shop. Using an App Proxy, you can do a callback asking for the details of the latest review, if any exist, for re-display any way you want.
Sure that is convoluted and weird, but you can do that.
Shopify have its own review app any one can leave review on your products.
You just need to install and configure that app.
I can help you to setup review app it is minutes change

How to get in touch with the users of your WP7 apps?

This is a problem that every developer will face when building their apps: how to contact the reviewer of your app to notify them of an update, new release, help topics, etc?
Some things I am thinking:
Include an RSS feed in your app which you can update to notify the users of the app.
Include a twitter feed regarding your app. How to go about this?
Include a way for the users to subscribe to a mailing list. This way, I can send a mass-email to the users who opted-in? Any suggestions here?
Any other ways that you think this can/should be done? Any existing solutions you can point me to will be great. Thanks in advance.
One way, for contacting a specific user who created a review of an application is to go to Zune Social (at http://social.zune.net/home) and create a new message. You can then enter the Zune Tag of the user who created a review.
Personally, I'd try to do all three - have a web page/site, with an RSS feed, and a subscription link (so they can subscribe to the RSS feed via email) and then post any updates to your twitter account as well.
You can't really force a user to do any of these, but having the options available, and linked from inside your app on the about page is probably good practise.
You could also include some kind of "Update Available" feature inside the application. Try to make this as unobtrusive as possible obviously. Obviously if they've still got the app installed they'll get an update notification from the marketplace anyway.
Sam
Besides the suggestions made by samjudson, I'll also recommend having a support-page with a direct option to send a email to you. Here's a example of a support-page from one of my applications. I've received lot of emails with suggestions for improvements, or complains about bugs. And since it's by email, it gives you the option to respond directly to people.
Another thing about reviews. Don't take them to serious. Most people only rate negatively (since humans like to complain), and by such a lot of reviews are often misinformed, outdated, or the users just been plain ignorant.

How can I use Appstore API to get top100 list? What is the common architecture to build a appstore application website?

I've found a PDF file of Appstore search API, that I can use some parameters to fetch an application's detail information.(sorry I forgot the download url, but I found it in stackoverflow)
But there are so many sites that show you a Top100 list(like appshopper.com), and such as Mobclix.com also provide you the rank information.How can they do that? I didn't find the related API in the PDF file.
I also found an Appstore API by ABTO(http://www.abtollc.com/AppStoreAPI.aspx), but I really wanna do it by myself.
If I clear the 1st question, then I'd like to know the common architecture of building a website based on the appstore data. Do I need a database to cache the appstore's data, and create a batch to fetch the data frequently, execute like once per hour? I think it might not be clever to access the appstore for every user request, and may be there is a access limit of appstore?
Thanks for your help!
You can use the following link to generate a url for querying iTunes Data for things like the top 100 apps in a particular category.
http://itunes.apple.com/rss/generator/
For the top 100 free productivity apps the generated url is
http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/ws/RSS/topfreeapplications/sf=143441/limit=100/genre=6007/xml
The PDF that you link to is very old and hasn't been updated in quite some time, but even if you did get that working, it doesn't have "Top 100" selections (to my knowledge).
1.The way people do to get information from the AppStore is to parse the Xml returned from ITunes web call, and get the information they want. There's no official api release from apple.
You may be right, its more clever to save a copy of app information on your server.