Search Gradle plugins

dev.shushant.ndk-encryption

Enhance your Android app's security with the NDK Encryption Plugin. This plugin provides a simple and efficient way to integrate native encryption features into your project.

https://www.shushant.dev/

Sources: https://github.com/dev-shushant/gradle-localization-plugin.git

Version 1.0.3-beta04 (latest)

Created 27 April 2025.

Enhance your Android app's security with the NDK Encryption Plugin. This plugin provides a simple and efficient way to integrate native encryption features into your project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.shushant.ndk-encryption") version "1.0.3-beta04"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("dev.shushant.ndk-encryption:dev.shushant.ndk-encryption.gradle.plugin:1.0.3-beta04")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("dev.shushant.ndk-encryption")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.shushant.ndk-encryption:dev.shushant.ndk-encryption.gradle.plugin:1.0.3-beta04")
      }
    }
    
    apply(plugin = "dev.shushant.ndk-encryption")
  • Applying plugins to all subprojects .