bugsnag / bugsnag-android-gradle-plugin

Gradle plugin for BugSnag which uploads ProGuard, DexGuard and NDK mapping files, and sends build notifications
https://docs.bugsnag.com/build-integrations/gradle/
MIT License
70 stars 38 forks source link

AGP 7.2 support #464

Closed lemnik closed 2 years ago

lemnik commented 2 years ago

Goal

Basic support for Android Gradle Plugin 7.2.

Design

ExternalNativeBuildTask.soFolder and objFolder return File in AGP 7.0 and DirectoryProperty in 7.2. To work around this we now use reflection on these properties and handle either case based on the returned value.

This PR also includes a change to the test fixture, using sed to alter the gradle-wrapper.properties avoiding versioning problems with the gradle wrapper task (which can have conflicts between the Gradle version and AGP version intended to be tested).

Testing

New test pipeline for AGP 7.2 using existing fixtures.