Skip to content

Commit 7f2b2de

Browse files
committed
Upgrade SDK version
1 parent 012818a commit 7f2b2de

2 files changed

Lines changed: 15 additions & 19 deletions

File tree

build.gradle.kts

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
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

158
group = "crazyboyfeng.android.preference"
169
version = "SNAPSHOT"
17-
ext["sdkVersion"] = 31
10+
ext["sdkVersion"] = 32

settings.gradle.kts

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
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

1114
rootProject.name = "AndroidXPreferenceExtensions"

0 commit comments

Comments
 (0)