Skip to content

Commit 2be182b

Browse files
committed
Resolve some issues in fastlane match post
1 parent 0b6e169 commit 2be182b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_posts/2017-08-30-fastlane-match-ios.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ categories: Technical iOS
99
[iOS certificates and Provisioning profiles](https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/MaintainingCertificates/MaintainingCertificates.html), most avoided topic for all iOS developer, specially for all the beginners out there. From iOS 10 onwards signing is required, even for development build and running your application on simulator and devices. So it becomes very important for us to know how to manage our Certificates and Provisioning profiles.
1010

1111
### Single Developer / Single Project
12-
If you are a single developer or working alone on a project and have your own apple developer account which you use for your development, you have nothing to worry about. Xcode8 introduced `[Automatic Manage Signing](https://developer.apple.com/library/content/qa/qa1814/_index.html)` option. With this option enabled all your certificates and profiles are managed by Xcode itself and it just work perfect.
12+
If you are a single developer or working alone on a project and have your own apple developer account which you use for your development, you have nothing to worry about. Xcode8 introduced [Automatic Manage Signing](https://developer.apple.com/library/content/qa/qa1814/_index.html) option. With this option enabled all your certificates and profiles are managed by Xcode itself and it just work perfect.
1313

1414
### Team / Multiple Project
1515
If you are working in a team on a project then these are the options you have for Certificates and Provisioning profile management :-
@@ -20,7 +20,7 @@ If you are working in a team on a project then these are the options you have fo
2020

2121
![Fastlane]({{ site.url }}/assets/images/fastlane_text.png)
2222

23-
As we all know, in last couple of year `[Fastlane](https://github.com/fastlane/fastlane/tree/master/fastlane)` toolchain took us all with surprise and made all developers life cool again. Today, we are going to talk about specific tool from `fastlane` toolset, `Match`.
23+
As we all know, in last couple of year [Fastlane](https://github.com/fastlane/fastlane/tree/master/fastlane) toolchain took us all with surprise and made all developers life cool again. Today, we are going to talk about specific tool from `fastlane` toolset, `Match`.
2424

2525
### What is Match?
2626

@@ -46,7 +46,7 @@ Before getting started we have to :-
4646
1. If you have existing Certificates and profiles on this account, you should consider using `match nuke`
4747

4848
To clean existing certificates and profiles(with caution):-
49-
`fasltane match nuke` // Only for first time, when setting up match
49+
`fasltane match nuke //Only for first time, when setting up match`
5050

5151
2. Go to your project root folder and run `fastlane match init`, this will create a `Matchfile` in fastlane folder (assuming you are already using fastlane)
5252
3. You will be asked for your git repo url, you created earlier and your `Matchfile` will have this content :-

0 commit comments

Comments
 (0)