Setup For Android

  • Add to top build.gradle file (Project: android)

allprojects {
    repositories {
        ...
        flatDir {
            dirs project(':nutrition_ai').file('libs')
        }
    }
}
  • The nutrition_ai build.gradle file dependency section should look like (Module: nutrition_ai)

allprojects {
    repositories {
        ...
        flatDir {
            implementation (name: 'passiolib-release', ext: 'aar')
        }
    }
}

If at any point you need help from the Passio team, please reach out to us at support@passiolife.com

Last updated