Skip to content

Commit 5ea19a8

Browse files
authored
Fix dependency source and code formatting (#5)
Updated dependency source and coding samples formatting with proper indentation in README.
1 parent 657d28f commit 5ea19a8

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,19 @@ Use this section to describe how to install your project. For example:
4646

4747
1. [Create a new ktor project](https://start.ktor.io/) or use existing one if you already have.
4848
2. Add jitpack repository to your `build.gradle.kts`:
49-
```groovy
50-
repositories {
51-
mavenCentral()
52-
maven {
53-
name = "jitpack"
54-
setUrl("https://jitpack.io")
49+
```groovy
50+
repositories {
51+
mavenCentral()
52+
maven {
53+
name = "jitpack"
54+
setUrl("https://jitpack.io")
5555
}
56-
}
57-
```
56+
}
57+
```
5858
3. Add the dependency:
5959
```groovy
6060
dependencies {
61-
implementation("com.github.freshtechtips:ktor-server-firebase-app-check:<latest-version-here>") // use the latest version above
61+
implementation("com.github.FreshKernel:ktor-server-firebase-app-check:<latest-version-here>") // use the latest version above
6262
}
6363
6464
```
@@ -70,7 +70,7 @@ Pass the following environment variables,
7070
* `FIREBASE_PROJECT_ID` from the Project number
7171
7272
```kotlin
73-
install(FirebaseAppCheckPlugin) {
73+
install(FirebaseAppCheckPlugin) {
7474
firebaseProjectNumber = System.getenv("FIREBASE_PROJECT_NUMBER")
7575
firebaseProjectId = System.getenv("FIREBASE_PROJECT_ID")
7676
isShouldVerifyToken = true

0 commit comments

Comments
 (0)