File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,19 +46,19 @@ Use this section to describe how to install your project. For example:
4646
47471 . [ Create a new ktor project] ( https://start.ktor.io/ ) or use existing one if you already have.
48482 . 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+ ```
58583 . 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
You can’t perform that action at this time.
0 commit comments