pluginManagement { repositories { google() mavenCentral() gradlePluginPortal() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS) repositories { mavenLocal() google() mavenCentral() maven { url 'https://jitpack.io' } // Local AARs for the demo flatDir { dirs file('example/libs') } } } rootProject.name = "SellyCloudSDKExample" include ':example'