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)
7.0.0
Created 10 February 2022.
Facilitates orchestration from a native app to a web app.
Using the plugins DSL:
plugins {
id("com.thunderhead.android.orchestration-plugin") version "7.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.thunderhead.android:orchestration-plugin:7.0.0")
}
}
apply(plugin = "com.thunderhead.android.orchestration-plugin")
Using the plugins DSL:
plugins {
id "com.thunderhead.android.orchestration-plugin" version "7.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.thunderhead.android:orchestration-plugin:7.0.0"
}
}
apply plugin: "com.thunderhead.android.orchestration-plugin"