You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the suggested Gadle lines caused issues when trying to build an a CI server that doesn’t use the typical Gradle wrapper. This updated version is more robust and works as expected without breaking.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ Just import the whole cloned project and run the sample.
86
86
87
87
```
88
88
include ':JniBitmapOperationsLibrary'
89
-
project(':JniBitmapOperationsLibrary').projectDir = new File(settingsDir, '../AndroidJniBitmapOperations/JniBitmapOperationsLibrary')
89
+
project(':JniBitmapOperationsLibrary').projectDir = new File(rootProject.getProjectDir(), '../AndroidJniBitmapOperations/JniBitmapOperationsLibrary')
90
90
```
91
91
3. Add the following lines to your top level `build.gradle` file inside the `buildscript` section. Replace the versions with whatever your project is using as needed.
0 commit comments