Skip to content

Release v3.2.0

Latest

Choose a tag to compare

@github-actions github-actions released this 11 Mar 19:25
a280744

πŸš€ Android GPUImage Plus v3.2.0

πŸ“¦ Downloads

Demo APK:

  • cgeDemo-3.2.0.apk - Demo application with full video features

AAR Library Artifacts:

Four variants are available for different use cases:

  1. gpuimage-plus-3.2.0.aar

    • Page size: 4KB (default)
    • Full-featured with FFmpeg bundled
    • Architectures: armeabi-v7a, arm64-v8a, x86, x86_64
  2. gpuimage-plus-3.2.0-16k.aar

    • Page size: 16KB
    • Full-featured with FFmpeg bundled
    • Architectures: armeabi-v7a, arm64-v8a, x86, x86_64
  3. gpuimage-plus-3.2.0-min.aar

    • Page size: 4KB (default)
    • Image-only version (no video features or FFmpeg)
    • Architectures: armeabi-v7a, arm64-v8a, x86, x86_64
  4. gpuimage-plus-3.2.0-16k-min.aar

    • Page size: 16KB
    • Image-only version (no video features or FFmpeg)
    • Architectures: armeabi-v7a, arm64-v8a, x86, x86_64

πŸ”§ Gradle Dependency

allprojects {
    repositories {
        maven {
            url 'https://maven.wysaid.org/'
        }
    }
}

dependencies {
    // Choose one of the following based on your needs:
    
    // Full-featured with FFmpeg (4KB page size)
    implementation 'org.wysaid:gpuimage-plus:3.2.0'
    
    // Full-featured with FFmpeg (16KB page size)
    implementation 'org.wysaid:gpuimage-plus:3.2.0-16k'
    
    // Image-only, no video (4KB page size)
    implementation 'org.wysaid:gpuimage-plus:3.2.0-min'
    
    // Image-only, no video (16KB page size)
    implementation 'org.wysaid:gpuimage-plus:3.2.0-16k-min'
}

πŸ“‹ System Requirements

  • Minimum Android SDK: API 21 (Android 5.0)
  • Target Android SDK: API 25
  • NDK Version: r27c
  • Supported Architectures: armeabi-v7a, arm64-v8a, x86, x86_64

πŸ“š Documentation


For complete changelog, see the auto-generated content below.

What's Changed

  • ci: release workflow overhaul – draft releases, master validation, direct maven commit, NDK r27c/r29 by @wysaid in #564
  • feat: Implement CameraX support with runtime camera API selection by @wysaid in #565
  • feat: add zoom ratio API (setZoomRatio) to ICameraProvider by @wysaid in #566

Full Changelog: v3.1.2...v3.2.0