Skip to content

Commit 41ea4f4

Browse files
committed
addition of = and using " mean that this code will work with both build.gradle and build.gradle.kts (the new kotlin script way to do gradle)
1 parent 6995ee0 commit 41ea4f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/learning-paths/mobile-graphics-and-gaming/profiling-ml-on-arm/app-profiling-streamline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ Now add the code below to the `build.gradle` file of the Module you wish to prof
128128
```gradle
129129
externalNativeBuild {
130130
cmake {
131-
path file('src/main/cpp/CMakeLists.txt')
132-
version '3.22.1'
131+
path = file("src/main/cpp/CMakeLists.txt")
132+
version = "3.22.1"
133133
}
134134
}
135135
```

0 commit comments

Comments
 (0)