Skip to content

Instantly share code, notes, and snippets.

@LizzieStudeneer
Created September 9, 2019 08:40
Show Gist options
  • Save LizzieStudeneer/f569e5a16cf3958c08e3bdcd827eef76 to your computer and use it in GitHub Desktop.
Save LizzieStudeneer/f569e5a16cf3958c08e3bdcd827eef76 to your computer and use it in GitHub Desktop.
import com.quickbirdstudios.bluesquare.plugin.mockkAndroid
// 1
/* Apply the project specific plugin */
plugins {
id("com.quickbirdstudios.bluesquare")
}
// 2
/* Configure the project specific plugin */
bluesquare {
packageName = "core"
publish = true
}
// 3
/* Define the modules dependencies */
dependencies {
api(project(":core:base"))
api(project(":core:hookable"))
api(project(":core:hijack"))
api(project(":core:controller"))
api(project(":core:variant"))
implementation(project(":processor:preview"))
implementation(project(":image_processing"))
testImplementation(project(":test_utils"))
androidTestImplementation(project(":test_utils"))
androidTestImplementation(project(":core:test_util"))
androidTestImplementation(project(":processor:test_util"))
androidTestImplementation(project(":core:test_util"))
androidTestImplementation(mockkAndroid)
}
@Coronel-B
Copy link

When the project specific plugin is applied, the current module is converted from library module to simple module and so kotlin classes cannot be created with the IDE

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment