Android Gradle Plugin を 8.5.0 にアップグレード #78
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
com.android.tools.build:gradle
を 8.5.0 に上げるThis pull request includes several updates to upgrade the Android Gradle Plugin (AGP) to version 8.5.0 and make necessary adjustments to the build files and configurations. The most important changes include upgrading the Gradle version, modifying build configurations, and updating namespaces in the build scripts.
AGP Upgrade and Build Configuration Adjustments:
gradle/wrapper/gradle-wrapper.properties
: Upgraded Gradle distribution URL to version 8.7.samples/build.gradle
: SetbuildConfig
to true because AGP 8.0 defaults it to false, which would otherwise disablebuildConfigField
options.samples/build.gradle
: Addednamespace
to the module-level build script as required by AGP 8.0.webrtc-video-effector/build.gradle
: Addednamespace
to the module-level build script.Manifest and Dependency Updates:
samples/src/main/AndroidManifest.xml
: Removed thepackage
attribute from the Android manifest.webrtc-video-effector/build.gradle
: Commented out thetransitive
attribute in dependencies.webrtc-video-effector/src/main/AndroidManifest.xml
: Removed thepackage
attribute from the Android manifest.These changes ensure compatibility with the latest AGP and Gradle versions, streamline the build process, and adhere to new configuration requirements.