I want to show and share my React.js app on portfolio - github

I do not know how to create a preview so others may see my react app. I have created. I would like to have a link to it on my portfolio. . I have posted screenshots and uploaded the files to Github https://github.com/courtneyangotti/PlayWall. I am looking for jobs so everything I can show helps of course!
I have posted screenshots and uploaded the files to Github https://github.com/courtneyangotti/PlayWall.
I just want to have a link for my portfolio

If what you are trying to do is to deploy your react app, you could do it thanks to heroku.
Use the Heroku Buildpack for Create React App.
You can find instructions in Deploying React with Zero Configuration.

Related

Open the app from an external link with universalLink or deeplink

I want to open app from an external link, for example a link that I get in iMessage, the question is, I should use deepLink or universalLink, I want to open the app when I tap on the link, then having ability to read the url in the app is enough for me.
And for this matter, I should set a Json file in the website as well? something like this:
https://developer.apple.com/documentation/xcode/supporting-universal-links-in-your-app
It's a bit confusing for me, could anyone gives me a real example and steps?
Thank you
Yes, basically both the app itself and the website need to be aware that you are going to be using Universal Links. There are a few steps to do this:
First you need to include the website as an Associated Domain inside of your Xcode project.
Then for the website you do have to create what is known as the apple-app-site-association file. This lets the the website know which apps are associated with the website.
This tutorial has a step by step on How to setup your website to work Universal Links.
Lastly you will have to have to update your AppDelegate file to handle when a Universal link opens the application.
More info can be found in the official Apple Documentation on Creating Universal Links.

Generating link for my flutter application

Is there any packages which will help to generate link for my flutter app that i am building.Like most of the app that we come across they give this option of sending downloading link to others , like GooglePay. Similarly I just want to generate link and nothings else.
You need to implement deep linking for your application please refer to docs: https://docs.flutter.dev/development/ui/navigation/deep-linking

How to link to page inside a flutter app?

When I click on the link I created on the website; If the application is installed, I want it to open and go to the page I want in the application, if the application is not installed, I want it to go to the app store or play store. I searched a lot but couldn't find it. Can you help me.
enter image description here
The solution for you would be deep linking or custom scheme. Them are practically, the same thing. Here you can find a link how to use them:
https://medium.com/flutter-community/deep-links-and-flutter-applications-how-to-handle-them-properly-8c9865af9283
This is exactly what Firebase Dynamic links was created for.
You can configure urls to redirect based on whether the user has the app installed or not.
https://firebase.google.com/docs/dynamic-links

branch.io sharesheet questions

Im using branch.io's sdk for unity, im having 2 questions im hoping someone could answer:
1: Is it any way to restrict the share sheet from sharing to certain apps? for example some apps that doesn't handle links well and in special the sms service.
The reason we do not want the ability to send by sms is that the app needs permission to access the phone book and thus the google play service will need an "privacy policy" link.
2: If its not then i would like to know if you guys could lead me in the right direction when writing a privacy policy because i do not have any legal education and do not know how to wright it. Is it sufficient to state that we are using your sdk? The demands are things like "you should see to it that the code is secure and encrypted" (Something like that) though i'm using your sdk and do not have a clue about how it works.
Thanks!
There is no way to change the list of apps from the share sheet in Branch's Unity SDK. Although Branch does have an end point to exclude certain apps using the Android SDK.
You will need to export your Unity 3D project to Android Studio. Once you successfully export the project, you can use the Branch Android SDK endpoint to exclude any app by providing the Package name of the App.
This is the sample code to update your Share Sheet:
//define the share sheet style
ShareSheetStyle shareSheetStyle = new ShareSheetStyle(context, shareTitle, shareDescription)
.setCopyUrlStyle(getResources().getDrawable(android.R.drawable.ic_menu_send), "Copy this URl", "Link added to clipboard")
.setMoreOptionStyle(getResources().getDrawable(android.R.drawable.ic_menu_search), "Show more")
.addPreferredSharingOption(SharingHelper.SHARE_WITH.FACEBOOK)
.addPreferredSharingOption(SharingHelper.SHARE_WITH.GMAIL)
.addPreferredSharingOption(SharingHelper.SHARE_WITH.TWITTER)
.addPreferredSharingOption(SharingHelper.SHARE_WITH.PINTEREST)
.setAsFullWidthStyle(true)
.setSharingTitle("Share With");
//to exclude whatsapp from the Share Sheet
shareSheetStyle.excludeFromShareSheet("com.whatsapp");
//to exclude android messages app from the Share Sheet
shareSheetStyle.excludeFromShareSheet("com.google.android.apps.messaging");

How to add MQA (Mobile Quality Assurance) to an existing MobileFirst hybrid app?

I need to add the MQA feedback tool to an existing hybrid app being develop with IBM MobileFirst.
Here is what I have done and what I need to do.
Done:
Downloaded the MQA sdk for MobileFirst JavaScript Hybrid SDK MFPComponent-JS-3.0.13
Created a Bluemix account and a MQA app
added IOS platform
Added MQA as an application component using Eclipse (not sure if this is the correct way to do it)
Creted a UI with a feedback form (rate experience, subject, comments, include my id in my feedback, submit button)
In this UI I created a toggle for enabling "Shake to see this screen".
Need help to:
check if the MQA library was added correctly. How can I test it?
How can I make the submit button click event send the feedback data (UI form) to the MQA server? (any source code please?) I need to see the data in the MQA manager site.
Thanks in advance
You need to first follow the provided Getting Started tutorials, which will guide you through setting up the SDK and making sure that MQA is properly working in the application, including example code.
After that, once you get it working, you can come back with concrete questions on things that do not work.
See here: https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-7-2/quality-assurance/native-ios/