Skip to content

Commit

Permalink
Upgrade to Gradle 8.0 and Android Gradle Plugin 8.0.1
Browse files Browse the repository at this point in the history
This change was auto-generated by the Android Studio Upgrade Assistant.

Issue: androidx#409
PiperOrigin-RevId: 533467455
  • Loading branch information
icbaker committed May 19, 2023
1 parent 3fa666c commit 485517f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.android.tools.build:gradle:8.0.1'
classpath 'com.google.android.gms:strict-version-matcher-plugin:1.2.4'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20'
}
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ android.enableJetifier=true
android.jetifier.ignorelist=bcprov
buildDir=buildout
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
3 changes: 3 additions & 0 deletions libraries/session/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ android {
withSourcesJar()
}
}
buildFeatures {
aidl true
}
}
dependencies {
api project(modulePrefix + 'lib-common')
Expand Down
4 changes: 4 additions & 0 deletions libraries/test_session_common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ apply from: "$gradle.ext.androidxMediaSettingsDir/common_library_config.gradle"

android {
namespace 'androidx.media3.test.session.common'

buildFeatures {
aidl true
}
}

dependencies {
Expand Down

0 comments on commit 485517f

Please sign in to comment.