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'
}