Could not find com.github.tbruyelle:rxpermissions:0.10.2

I got “Could not find com.github.tbruyelle:rxpermissions:0.10.2” issue

I added it to gradle as follows, but the issue is not being fixed
How to fixed it.

build.gradle (app)

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'

defaultConfig {
    .....
    minSdkVersion 21
    targetSdkVersion 33
    versionCode 1
    versionName "1.0"
}
 kotlinOptions {
        jvmTarget = JavaVersion.VERSION_1_8
 }

dependencies {
    // Kotlin
    implementation "com.google.android.material:material:$rootProject.materialVersion"
    implementation "androidx.appcompat:appcompat:$rootProject.appCompatVersion"
    implementation "androidx.recyclerview:recyclerview:$rootProject.recyclerVersion"

    implementation "androidx.constraintlayout:constraintlayout:$rootProject.constraintLayoutVersion"

    // Jetpack Compose Integration
    implementation "androidx.navigation:navigation-compose:1.0.0-alpha01"

    // RxPermissions
    implementation 'io.reactivex.rxjava2:rxjava:2.2.13'
    implementation 'com.github.tbruyelle:rxpermissions:0.10.2'
}

Did you declare a repository that has that dependency?
It seems only the Mulesoft repository has it: https://mvnrepository.com/artifact/com.github.tbruyelle/rxpermissions/0.10.2

Tank you reply

Could you tell me how to fix it?

Fix what?
If you don’t have it as repository, declare it as repository.