Skip to content

Commit

Permalink
Fixed sintax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
kikettas committed Nov 27, 2018
1 parent 6a03946 commit dc17e15
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Simply clone this repository.

To start using the tool, go to the repo folder and run this command:

```bash
```sh
sh build -p YOUR_POD_NAME
```

Expand All @@ -35,7 +35,7 @@ Optionally, you can specify both `-s` (subspecs) and `-l`(links to external sour

When it finishes if the pod specified is an **ObjectiveC** pod, you will get an output like this:

```bash
```sh
▸ Installing Pods... ✅
▸ Building libraries... ✅
▸ Creating fat libraries... ✅
Expand All @@ -47,16 +47,15 @@ When it finishes if the pod specified is an **ObjectiveC** pod, you will get an
### Swift pod

Since Swift libraries are not officialy supported by Xamarin, the process of
bulding this binding files is slightly different in **Swift**. First, you have
bulding these binding files is slightly different in **Swift**. First, you have
to mark all the _classes/structs/enums_ that you want to expose
to the binding library with the `@objc` attribute. After doing so, you can start using the tool.

In the process besides creating the binding files, these are normalized (thanks to [SwiftClassify](https://github.com/Flash3001/SwiftClassify))
with the correct names.
During the building, besides creating the binding files, these are normalized (thanks to [SwiftClassify](https://github.com/Flash3001/SwiftClassify))
with the correct names. Finally all the Swift libraries required by the binding library are listed.

In addition to the output obtained with an ObjectiveC library, you also can see all the Swift libraries required by your Xamarin app.

```bash
```sh
▸ Installing Pods... ✅
▸ Building libraries... ✅
▸ Creating fat libraries... ✅
Expand Down

0 comments on commit dc17e15

Please sign in to comment.