Skip to content

Commit 2212ab0

Browse files
committed
Fix gradle apply syntax in playground
Test: cd appcompat-playground && ./gradlew tasks Change-Id: Ie3f82838bd8801d552751e023c90b75a9b301881
1 parent 31ba186 commit 2212ab0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

playground-projects/activity-playground/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
id "com.android.settings" version "8.7.0-alpha02"
2424
}
2525

26-
apply ../../buildSrc/ndk.gradle
26+
apply from: "../../buildSrc/ndk.gradle"
2727

2828
rootProject.name = "activity-playground"
2929

playground-projects/appcompat-playground/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
id "com.android.settings" version "8.7.0-alpha02"
88
}
99

10-
apply ../../buildSrc/ndk.gradle
10+
apply from: "../../buildSrc/ndk.gradle"
1111

1212
rootProject.name = "appcompat-playground"
1313

playground-projects/biometric-playground/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
id "com.android.settings" version "8.7.0-alpha02"
2424
}
2525

26-
apply ../../buildSrc/ndk.gradle
26+
apply from: "../../buildSrc/ndk.gradle"
2727

2828
rootProject.name = "biometric-playground"
2929

playground-projects/collection-playground/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
id "com.android.settings" version "8.7.0-alpha02"
2424
}
2525

26-
apply ../../buildSrc/ndk.gradle
26+
apply from: "../../buildSrc/ndk.gradle"
2727

2828
rootProject.name = "collections-playground"
2929

playground-projects/compose/runtime-playground/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
id "com.android.settings" version "8.7.0-alpha02"
2424
}
2525

26-
apply ../../buildSrc/ndk.gradle
26+
apply from: "../../buildSrc/ndk.gradle"
2727

2828
rootProject.name = "compose-runtime"
2929

0 commit comments

Comments
 (0)