diff --git a/README.md b/README.md index 67210f5081..490cab41c6 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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() @@ -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() diff --git a/dd-sdk-android-core/README.md b/dd-sdk-android-core/README.md index dc0f15b389..19ec186edf 100644 --- a/dd-sdk-android-core/README.md +++ b/dd-sdk-android-core/README.md @@ -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. @@ -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. @@ -54,7 +54,7 @@ You can retrieve the named SDK instance by calling `Datadog.getInstance()` 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.