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
Copy file name to clipboardExpand all lines: README.md
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,29 @@ Just import the whole cloned project and run the sample.
80
80
81
81
#### Further configuring and using as the library
82
82
83
+
#### Option 1
84
+
1. Add this repository as a git submodule. For these instructions we added in a folder named `AndroidJniBitmapOperations`
85
+
2. Add the following lines to your `settings.gradle` file
86
+
87
+
```
88
+
include ':JniBitmapOperationsLibrary'
89
+
project(':JniBitmapOperationsLibrary').projectDir = new File(settingsDir, '../AndroidJniBitmapOperations/JniBitmapOperationsLibrary')
90
+
```
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.
92
+
93
+
```
94
+
// Variables for JniBitmapOperationsLibrary
95
+
ext.propCompileSdkVersion = 23
96
+
ext.propBuildToolsVersion = "27.0.3"
97
+
```
98
+
4. Add the following lines to your app `build.gradle` file inside the `dependancies` section
0 commit comments