File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
2- buildscript {
3- repositories {
4- google()
5- mavenCentral()
6- }
7- dependencies {
8- classpath(" com.android.tools.build:gradle:7.1.1" )
9- classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30" )
10- // NOTE: Do not place your application dependencies here; they belong
11- // in the individual module build.gradle files
12- }
2+ plugins {
3+ id(" com.android.application" ).version(" 7.1.1" ).apply (false )
4+ id(" com.android.library" ).version(" 7.1.1" ).apply (false )
5+ id(" org.jetbrains.kotlin.android" ).version(" 1.6.10" ).apply (false )
136}
147
158group = " crazyboyfeng.android.preference"
169version = " SNAPSHOT"
17- ext[" sdkVersion" ] = 31
10+ ext[" sdkVersion" ] = 32
Original file line number Diff line number Diff line change 1- // enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2- // buildSrc support
3- // enableFeaturePreview("VERSION_CATALOGS")
4-
5- dependencyResolutionManagement.repositories {
6- // repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
7- mavenCentral()
1+ pluginManagement.repositories {
2+ gradlePluginPortal()
83 google()
4+ mavenCentral()
5+ }
6+ dependencyResolutionManagement {
7+ repositoriesMode.set(RepositoriesMode .FAIL_ON_PROJECT_REPOS )
8+ repositories {
9+ google()
10+ mavenCentral()
11+ }
912}
1013
1114rootProject.name = " AndroidXPreferenceExtensions"
You can’t perform that action at this time.
0 commit comments