Search code examples
androidkotlingradleandroid-jetpack-composegradle-kotlin-dsl

Android studio not installing some specific packages


I want to install other pack ages apart from the ones that come with compose. Example:

For lotties files animation implementation "com.airbnb.android:Lottie:3.7.1" And For curved bezier bottom app bar implementation"com.etebarian:meow-bottom-navigation:1.3.1" It keeps giving error messages from

CheckDebugAarMetadata Downwards


Solution

  • Add maven {url 'https://jitpack.io' }

    dependencyResolutionManagement {
        repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
        repositories {
            google()
            mavenCentral()
            maven {url 'https://jitpack.io' }
    
        }
    }
    

    in the settings.gradle file. Update or change gradle version.