File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ allprojects {
59
59
}
60
60
61
61
tasks.register<Delete >(" clean" ).configure {
62
- delete(rootProject.buildDir )
62
+ delete(rootProject.layout.buildDirectory )
63
63
}
64
64
65
65
val internalApiAnnotations = listOf (
@@ -132,7 +132,6 @@ fun Project.configureAndroid() {
132
132
val sdkVersionName = findProperty(" VERSION_NAME" ) ? : rootProject.findProperty(" VERSION_NAME" )
133
133
134
134
configure<LibraryExtension > {
135
- buildToolsVersion = " 30.0.3"
136
135
compileSdk = 34
137
136
138
137
buildFeatures {
@@ -142,7 +141,6 @@ fun Project.configureAndroid() {
142
141
143
142
defaultConfig {
144
143
minSdk = 24
145
- targetSdk = 30
146
144
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
147
145
testInstrumentationRunnerArguments + = " clearPackageData" to " true"
148
146
consumerProguardFiles + = rootProject.file(" configuration/consumer-rules.pro" )
@@ -170,7 +168,7 @@ fun Project.configureAndroid() {
170
168
// Needed when running integration tests. The oauth2 library uses relies on two
171
169
// dependencies (Apache's httpcore and httpclient), both of which include
172
170
// META-INF/DEPENDENCIES. Tried a couple other options to no avail.
173
- packagingOptions {
171
+ packaging {
174
172
resources.excludes.addAll(
175
173
listOf (
176
174
" META-INF/DEPENDENCIES" ,
Original file line number Diff line number Diff line change 1
1
[versions ]
2
2
agp = " 8.4.0"
3
3
androidx-activity = " 1.2.0"
4
- androidx-annotation = " 1.1.0 "
4
+ androidx-annotation = " 1.9.1 "
5
5
androidx-appcompat = " 1.2.0"
6
6
androidx-browser = " 1.4.0"
7
7
androidx-concurrent = " 1.1.0"
You can’t perform that action at this time.
0 commit comments