com.github.hydra1983.native-dependencies
Owner: Edison Guo
a native(.so) dependencies resolver for android
https://github.com/hydra1983/native-dependencies-plugin
Sources: https://github.com/hydra1983/native-dependencies-plugin
Version 1.0.6 (latest)
1.0.6
Created 29 October 2018.
a native(.so) dependencies resolver for android
Using the plugins DSL:
plugins {
id("com.github.hydra1983.native-dependencies") version "1.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.hydra1983:native-dependencies-plugin:1.0.6")
}
}
apply(plugin = "com.github.hydra1983.native-dependencies")
Using the plugins DSL:
plugins {
id "com.github.hydra1983.native-dependencies" version "1.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.hydra1983:native-dependencies-plugin:1.0.6"
}
}
apply plugin: "com.github.hydra1983.native-dependencies"