com.thunderhead.android.orchestration-plugin
Owner: thunderhead-mobile
Facilitates orchestration from a native app to a web app.
Sources: https://github.com/thunderheadone/one-sdk-android
Version 7.0.0 (latest)
Created 10 February 2022.
Facilitates orchestration from a native app to a web app.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.thunderhead.android.orchestration-plugin") version "7.0.0"
}
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("com.thunderhead.android.orchestration-plugin:com.thunderhead.android.orchestration-plugin.gradle.plugin:7.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.thunderhead.android.orchestration-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.thunderhead.android.orchestration-plugin:com.thunderhead.android.orchestration-plugin.gradle.plugin:7.0.0") } } apply(plugin = "com.thunderhead.android.orchestration-plugin")
- Applying plugins to all subprojects .