forked from EmergeTools/Reaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
94603c3
commit f47a9dc
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# [Reaper](https://www.emergetools.com/blog/posts/dead-code-detection-with-reaper) | ||
|
||
A framework for detecting dead code at runtime. | ||
|
||
## Installation | ||
|
||
Add Reaper as a dependency with Swift package manager using the URL https://github.com/EmergeTools/Reaper, or download the latest XCFramework from [Github releases](https://github.com/EmergeTools/Reaper/releases). | ||
|
||
## Setup | ||
|
||
Start the SDK at app launch by adding the following code: | ||
|
||
```Swift | ||
import Reaper | ||
|
||
... | ||
|
||
EMGReaper.sharedInstance().start(withAPIKey: "myKey") // The key is provided to you by Emerge | ||
``` | ||
|
||
More details can be found in the [docs](https://docs.emergetools.com/docs/reaper). |