Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Rosa Trieu <[email protected]>
  • Loading branch information
0xnm and rtrieu committed Jul 24, 2023
1 parent 63d22a4 commit 4cdcafc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ If you use Jetpack Compose in your application, take a look at Datadog's [dedica

### SQLDelight

If you use SQLDelight in your application, take a look at Datadog's [dedicated library](integrations/dd-sdk-android-sqldelight/README.md).
If you use SQLDelight in your application, see Datadog's [dedicated library](integrations/dd-sdk-android-sqldelight/README.md).

### RxJava

If you use RxJava in your application, take a look at Datadog's [dedicated library](integrations/dd-sdk-android-rx/README.md).
If you use RxJava in your application, see Datadog's [dedicated library](integrations/dd-sdk-android-rx/README.md).

### Picasso

If you use Picasso, let it use your `OkHttpClient` instrumented with Datadog SDK, and you can get RUM and APM information about network requests made by Picasso.
If you use Picasso, use it with the `OkHttpClient` that's been instrumented with the Datadog SDK for RUM and APM information about network requests made by Picasso.

```kotlin
val picasso = Picasso.Builder(context)
Expand All @@ -58,7 +58,7 @@ If you use Picasso, let it use your `OkHttpClient` instrumented with Datadog SDK

### Retrofit

If you use Retrofit, let it use your `OkHttpClient` instrumented with Datadog SDK, and you can get RUM and APM information about network requests made with Retrofit.
If you use Retrofit, use it with the `OkHttpClient` that's been instrumented with the Datadog SDK for RUM and APM information about network requests made with Retrofit.

```kotlin
val retrofitClient = Retrofit.Builder()
Expand All @@ -69,7 +69,7 @@ If you use Retrofit, let it use your `OkHttpClient` instrumented with Datadog SD

### Apollo (GraphQL)

If you use Apollo, let it use your `OkHttpClient` instrumented with Datadog SDK, and you can get RUM and APM information about all the queries performed through the Apollo client.
If you use Apollo, use it with the `OkHttpClient` that's been instrumented with the Datadog SDK for RUM and APM information about all the queries performed through Apollo client.

```kotlin
val apolloClient = ApolloClient.builder()
Expand Down
6 changes: 3 additions & 3 deletions dd-sdk-android-core/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Datadog SDK for Android - core library

## Getting Started
## Getting started

To include the Datadog SDK for Android in your project, simply add any product you want to use to your application's `build.gradle` file.

Expand Down Expand Up @@ -34,7 +34,7 @@ class SampleApplication : Application() {
}
```

### Using a Secondary Instance of the SDK
### Using a secondary instance of the SDK

It is possible to initialize multiple instances of the SDK by associating them with a name. Many methods of the SDK can optionally take an SDK instance as an argument. If not provided, the call is associated with the default (nameless) SDK instance.

Expand All @@ -54,7 +54,7 @@ You can retrieve the named SDK instance by calling `Datadog.getInstance(<name>)`

See the dedicated [Datadog Android RUM Collection documentation][1] to learn how to send RUM data from your Android or Android TV application to Datadog.

## Setting up Datadog Logs SDK
## Setting up the Datadog Logs SDK

See the dedicated [Datadog Android Log Collection documentation][2] to learn how to forward logs from your Android or Android TV application to Datadog.

Expand Down

0 comments on commit 4cdcafc

Please sign in to comment.