MultiLineRadioGroup
MultiLineRadioGroup copied to clipboard
build.gradle (Project)
Unfortunately the build.gradle(project) files have been re-configured and simplified to just 3 lines. There doesn't appear to be a repository in that file any more... The current file looks like this:
// Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { id 'com.android.application' version '7.3.1' apply false id 'com.android.library' version '7.3.1' apply false id 'org.jetbrains.kotlin.android' version '1.7.20' apply false }
allprojects { repositories { ... maven { url "https://jitpack.io" } ... } }
I'm not sure where to add the snippet into (or) do I simply add it into the build.gradle(module) file?