Search Gradle plugins

com.longxk.apk_exe

Owner: Loong

Make a single ELF executable for Android from Java/Kotlin code

https://github.com/longxk/apk.exe

Sources: https://github.com/longxk/apk.exe.git

Version 0.0.1 (latest)

Created 21 April 2020.

Make a single ELF executable for Android from Java/Kotlin code

Using the plugins DSL:

plugins {
  id("com.longxk.apk_exe") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.longxk.apk_exe:plugin:0.0.1")
  }
}

apply(plugin = "com.longxk.apk_exe")

Using the plugins DSL:

plugins {
  id "com.longxk.apk_exe" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.longxk.apk_exe:plugin:0.0.1"
  }
}

apply plugin: "com.longxk.apk_exe"

Learn how to apply plugins to subprojects