Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Updated Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Mostovyi committed May 25, 2020
1 parent 0cf1d1c commit 0cf14e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Install your application and you will see the entry named **Androscope** in laun

No configuration in code is required, but you might want to do some customizations (see [Recipes](#recipes)).

**Note:** if your application crashes when attempting to launch Androscope because of some initialization in Application class, you can [disable a separate process](#customize-androscope-process) in which Androscope runs by default.
**Note:** if your application crashes when attempting to launch Androscope because of some initialization in Application class, you can [force Androscope to run in the main process](#customize-androscope-process).

It is a good idea to put Androscope only for debug build type or for a specific flavor, so you don't use it in production builds.

Expand Down Expand Up @@ -165,7 +165,7 @@ FROM my_table_containing_blobs
```

### Customize Androscope process
Androscope runs by default in a separate process. This is convenient, so it doesn't interfere with the code of your main application. Also it is useful for debugging, because if the main or some other process crash, you can look what kind of data could have lead to it. If your application has issues with multiple processes, you can disable a separate process for Androscope:
Androscope runs by default in a separate process. This is convenient, so it doesn't interfere with the code of your main application. Also it is useful for debugging, because if the main or some other process crash, you can look what kind of data could have lead to it. If your application has issues with multiple processes, you can force Androscope to run in the main process:

```xml
<resources>
Expand All @@ -177,6 +177,6 @@ You can also customize the process name:

```xml
<resources>
<string name=":debug" />
<string name="androscope_process">:debug</string>
</resources>
```

0 comments on commit 0cf14e0

Please sign in to comment.