Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
986 changes: 740 additions & 246 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ configurations {
}

dependencies {
compileOnly "com.android.tools.build:gradle:4.1.0"
compileOnly "com.android.tools.build:gradle:4.2.2"
compileOnly "org.jetbrains.kotlin.android:org.jetbrains.kotlin.android.gradle.plugin:1.7.22"

implementation 'com.google.gradle:osdetector-gradle-plugin:1.7.2'
Expand Down
4 changes: 2 additions & 2 deletions examples/exampleKotlinDslProject/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ protobuf {
}
}
generateProtoTasks {
ofSourceSet("main").forEach {
it.plugins {
ofSourceSet("main") {
plugins {
// Apply the "grpc" plugin whose spec is defined above, without
// options. Note the braces cannot be omitted, otherwise the
// plugin will not be added. This is because of the implicit way
Expand Down
2 changes: 1 addition & 1 deletion examples/exampleProject/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protobuf {
}
}
generateProtoTasks {
ofSourceSet('main').configureEach {
ofSourceSet('main') {
plugins {
// Apply the "grpc" plugin whose spec is defined above, without
// options. Note the braces cannot be omitted, otherwise the
Expand Down
Loading