diff -r 57d9068de0ef -r bcfc8238b4f6 README.md --- a/README.md Sun May 04 16:05:40 2025 -0400 +++ b/README.md Sun May 04 17:15:06 2025 -0400 @@ -13,13 +13,13 @@ In your app-level `build.gradle`, apply the plugin by adding the following line under the existing `apply plugin: 'com.android.application'` at the top of the file: -```build.gradle.kts +```kotlin title="build.gradle.kts" apply plugin: 'com.google.android.gms.oss-licenses-plugin' ``` ### Add the ui library to your application -```build.gradle.kts +```kotlin title="build.gradle.kts" repositories { maven { url = uri("https://jitpack.io") @@ -33,7 +33,7 @@ ### Launch the license activity -``` +```kotlin val intent = Intent(this, OpenSourceLicensesActivity::class.java) startActivity(intent) ```