I have been working on an android app built using ResearchStack skin framework pulled in through the gradle dependency: implementation 'org.researchstack:skin:1.1.2'.
Can anyone walk me through updating my project to be dependent on local ResearchStack build artifacts so that I can make changes to the framework and see those changes in my local application.
I tried just pointing to the build output: implementation fileTree(dir: '../../ResearchStack/skin/build/outputs/aar', include: ['*.aar']), but that leaves me with unresolved transitive dependencies and some build issues that I couldn't quite get worked out.
Thanks!!