AudioHandler callback to modify AudioTrack and AudioRecord #2062
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: Metalava SemVer Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| semver-check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Checkout main | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| ref: ${{ github.base_ref }} | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 | |
| with: | |
| java-version: 17 | |
| distribution: temurin | |
| cache: gradle | |
| - name: Copy existing api.txt files | |
| run: ./gradlew copyApiTxtFile | |
| - name: Checkout PR | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| ref: ${{ github.head_ref || github.ref_name }} | |
| clean: false | |
| - name: Run Metalava SemVer check | |
| run: ./gradlew metalavaSemver |