diff --git a/app/build.gradle b/app/build.gradle index 9e1900800f..a96f4bbc2c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -308,7 +308,7 @@ dependencies { exclude group: 'com.squareup.okhttp', module: 'okhttp-urlconnection' } implementation 'com.annimon:stream:1.1.8' - implementation 'com.codewaves.stickyheadergrid:stickyheadergrid:0.9.4' + implementation project(':stickyheader') implementation 'com.github.dmytrodanylyk.circular-progress-button:library:1.1.3-S2' implementation 'androidx.sqlite:sqlite-ktx:2.3.1' implementation 'net.zetetic:sqlcipher-android:4.5.4@aar' diff --git a/settings.gradle b/settings.gradle index 7ab26e097c..e2388ee105 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,3 +5,4 @@ include ':liblazysodium' include ':libsession' include ':libsignal' include ':libsession-util' +include ':stickyheader' diff --git a/stickyheader/build.gradle b/stickyheader/build.gradle new file mode 100644 index 0000000000..b7a36ae090 --- /dev/null +++ b/stickyheader/build.gradle @@ -0,0 +1,2 @@ +configurations.maybeCreate("default") +artifacts.add("default", file('stickyheadergrid-0.9.4.aar')) \ No newline at end of file diff --git a/stickyheader/stickyheadergrid-0.9.4.aar b/stickyheader/stickyheadergrid-0.9.4.aar new file mode 100644 index 0000000000..a704f0985f Binary files /dev/null and b/stickyheader/stickyheadergrid-0.9.4.aar differ