duggulous
duggulous
How does one set up this project to build the library and run the sample app?
Witness currently resolves the dependency file with the following [code](https://github.com/signalapp/gradle-witness/blob/10f1269c0aafdc1d478efc005ed48f3a47d44278/src/main/groovy/org/whispersystems/witness/WitnessPlugin.groovy#L34): ``` ResolvedArtifact dependency = project.configurations.compile.resolvedConfiguration.resolvedArtifacts.find{ return it.name.equals(name) && it.moduleVersion.id.group.equals(group) } ``` Because this only checks the group and name, and...