This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Xamarin Development
Jim Jeon edited this page Feb 4, 2017
·
2 revisions
- Go to visualstudio.com
- Download Visual Studio 2017 installer
- When you execute the installer, you can find Mobile Development with .NET(Xamarin) in workroads check it
- Install Visual Studio 2017
- Done
Now you are ready to start developing with xamarin. If you have already installed VS2017, it's okay. Just execute the installer then you can edit your workloads.
- Go to xamarin.com
- Go to Product-Xamarin Platform
- Insert infos and download
- Install the Xamarin Platform
- Done
If your download is too slow try Way3.
If your download is too slow, it might be downloading android SDK is too slow.
- Download and install VS (If you already have VS skip this step)
- Execute SDK Manager from your search in Windows
- Download the latest SDK
- Try Way 2 again.
- for Windows Download
- Download git for windows from link above.
- Install
- for Mac Download
- Download git for mac from link above.
- Install
Open your terminal(git bash for windows).
# do not leave out quotes
$ git config --global user.name "your username"
$ git config --global user.email "your git email"
Open your terminal again(git bash for windows). And follow the steps in here.
Open your terminal again(git bash for windows).
# if you are using SSH
$ git clone [email protected]:SGCSRelease/ReleaseApp.git
# if you are not using SSH
$ git clong https://github.com/SGCSRelease/ReleaseApp.git
This is important because developing in a new branch makes the master branch safe. Okay, open your terminal and go to your repo.
# you should leave out those quotes
$ git branch "branch name"
$ git checkout "branch name"
Now you are all set. Please be happy with developing :)