Skip to content

Commit 15a7a67

Browse files
committed
More fixes
1 parent 25eced2 commit 15a7a67

File tree

14 files changed

+17
-5
lines changed

14 files changed

+17
-5
lines changed

android_build_files/extract_and_dex.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ def defineExtractionTasks(String resourceName, String buildType) {
5858
outputs.file "$outPro"
5959

6060
// Convert the jar format using the dx tool.
61-
String dex_path = "${sdk_dir}/build-tools/${buildToolsVersion}/dx"
61+
String dex_path = "${sdk_dir}/build-tools/${buildToolsVersion}/d8"
6262
if (org.gradle.internal.os.OperatingSystem.current().isWindows()) {
6363
dex_path = "${dex_path}.bat"
6464
}
6565

6666
commandLine "${dex_path}",
67-
'--dex',
68-
"--output=$dexedJar",
69-
"$buildDir/classes.jar"
67+
"$buildDir/classes.jar",
68+
"--output",
69+
"$dexedJar"
7070
}
7171

7272
// Once the dexed jar has been made, generate a proguard file for it.

app/app_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737
targetCompatibility JavaVersion.VERSION_11
3838
}
3939
compileSdkVersion 34
40+
buildToolsVersion '32.0.0'
4041

4142
sourceSets {
4243
main {

app/google_api_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737
targetCompatibility JavaVersion.VERSION_11
3838
}
3939
compileSdkVersion 34
40+
buildToolsVersion '32.0.0'
4041

4142
sourceSets {
4243
main {

app/invites_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737
targetCompatibility JavaVersion.VERSION_11
3838
}
3939
compileSdkVersion 34
40+
buildToolsVersion '32.0.0'
4041

4142
sourceSets {
4243
main {

app/test_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ apply plugin: 'com.android.library'
3333

3434
android {
3535
compileSdkVersion 34
36+
buildToolsVersion '32.0.0'
3637

3738
sourceSets {
3839
main {

app_check/app_check_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737
targetCompatibility JavaVersion.VERSION_11
3838
}
3939
compileSdkVersion 34
40+
buildToolsVersion '32.0.0'
4041

4142
sourceSets {
4243
main {

auth/auth_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737
targetCompatibility JavaVersion.VERSION_11
3838
}
3939
compileSdkVersion 34
40+
buildToolsVersion '32.0.0'
4041

4142
sourceSets {
4243
main {

auth/integration_test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ android {
5555

5656
defaultConfig {
5757
applicationId 'com.google.android.auth.testapp'
58-
minSdkVersion 23
58+
minSdkVersion 24
5959
targetSdkVersion 34
6060
versionCode 1
6161
versionName '1.0'

database/database_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ apply plugin: 'com.android.library'
3333

3434
android {
3535
compileSdkVersion 34
36+
buildToolsVersion '32.0.0'
3637

3738
sourceSets {
3839
main {

firestore/firestore_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737
targetCompatibility JavaVersion.VERSION_11
3838
}
3939
compileSdkVersion 34
40+
buildToolsVersion '32.0.0'
4041

4142
sourceSets {
4243
main {

gma/gma_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ android {
3838
}
3939

4040
compileSdkVersion 34
41+
buildToolsVersion '32.0.0'
4142

4243
sourceSets {
4344
main {

messaging/messaging_java/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ android {
4242
targetCompatibility JavaVersion.VERSION_11
4343
}
4444
compileSdkVersion 34
45+
buildToolsVersion '32.0.0'
4546

4647
defaultConfig {
4748
minSdkVersion 23

remote_config/remote_config_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737
targetCompatibility JavaVersion.VERSION_11
3838
}
3939
compileSdkVersion 34
40+
buildToolsVersion '32.0.0'
4041

4142
sourceSets {
4243
main {

storage/storage_resources/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737
targetCompatibility JavaVersion.VERSION_11
3838
}
3939
compileSdkVersion 34
40+
buildToolsVersion '32.0.0'
4041

4142
sourceSets {
4243
main {

0 commit comments

Comments
 (0)