Skip to content

Commit

Permalink
Fix gradle apply syntax in playground
Browse files Browse the repository at this point in the history
Test: cd appcompat-playground && ./gradlew tasks
Change-Id: I55a80425150cf7a597bedde35d917301c582433c
  • Loading branch information
dlam committed Sep 11, 2024
1 parent d56d445 commit 03429a5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion playground-projects/activity-playground/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
id "com.android.settings" version "8.7.0-alpha02"
}

apply ../../buildSrc/ndk.gradle
apply from: "../../buildSrc/ndk.gradle"

rootProject.name = "activity-playground"

Expand Down
2 changes: 1 addition & 1 deletion playground-projects/appcompat-playground/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id "com.android.settings" version "8.7.0-alpha02"
}

apply ../../buildSrc/ndk.gradle
apply from: "../../buildSrc/ndk.gradle"

rootProject.name = "appcompat-playground"

Expand Down
2 changes: 1 addition & 1 deletion playground-projects/biometric-playground/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
id "com.android.settings" version "8.7.0-alpha02"
}

apply ../../buildSrc/ndk.gradle
apply from: "../../buildSrc/ndk.gradle"

rootProject.name = "biometric-playground"

Expand Down
2 changes: 1 addition & 1 deletion playground-projects/collection-playground/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
id "com.android.settings" version "8.7.0-alpha02"
}

apply ../../buildSrc/ndk.gradle
apply from: "../../buildSrc/ndk.gradle"

rootProject.name = "collections-playground"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
id "com.android.settings" version "8.7.0-alpha02"
}

apply ../../buildSrc/ndk.gradle
apply from: "../../buildSrc/ndk.gradle"

rootProject.name = "compose-runtime"

Expand Down

0 comments on commit 03429a5

Please sign in to comment.