Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
a-maurice committed Sep 20, 2024
1 parent 25eced2 commit 15a7a67
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 5 deletions.
8 changes: 4 additions & 4 deletions android_build_files/extract_and_dex.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ def defineExtractionTasks(String resourceName, String buildType) {
outputs.file "$outPro"

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

commandLine "${dex_path}",
'--dex',
"--output=$dexedJar",
"$buildDir/classes.jar"
"$buildDir/classes.jar",
"--output",
"$dexedJar"
}

// Once the dexed jar has been made, generate a proguard file for it.
Expand Down
1 change: 1 addition & 0 deletions app/app_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ android {
targetCompatibility JavaVersion.VERSION_11
}
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
1 change: 1 addition & 0 deletions app/google_api_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ android {
targetCompatibility JavaVersion.VERSION_11
}
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
1 change: 1 addition & 0 deletions app/invites_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ android {
targetCompatibility JavaVersion.VERSION_11
}
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
1 change: 1 addition & 0 deletions app/test_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
1 change: 1 addition & 0 deletions app_check/app_check_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ android {
targetCompatibility JavaVersion.VERSION_11
}
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
1 change: 1 addition & 0 deletions auth/auth_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ android {
targetCompatibility JavaVersion.VERSION_11
}
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
2 changes: 1 addition & 1 deletion auth/integration_test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ android {

defaultConfig {
applicationId 'com.google.android.auth.testapp'
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 34
versionCode 1
versionName '1.0'
Expand Down
1 change: 1 addition & 0 deletions database/database_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
1 change: 1 addition & 0 deletions firestore/firestore_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ android {
targetCompatibility JavaVersion.VERSION_11
}
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
1 change: 1 addition & 0 deletions gma/gma_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ android {
}

compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
1 change: 1 addition & 0 deletions messaging/messaging_java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ android {
targetCompatibility JavaVersion.VERSION_11
}
compileSdkVersion 34
buildToolsVersion '32.0.0'

defaultConfig {
minSdkVersion 23
Expand Down
1 change: 1 addition & 0 deletions remote_config/remote_config_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ android {
targetCompatibility JavaVersion.VERSION_11
}
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down
1 change: 1 addition & 0 deletions storage/storage_resources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ android {
targetCompatibility JavaVersion.VERSION_11
}
compileSdkVersion 34
buildToolsVersion '32.0.0'

sourceSets {
main {
Expand Down

0 comments on commit 15a7a67

Please sign in to comment.