Currently using 2.2-SNAPSHOT as my dependency but I would like to specify a specific SNAPSHOT version (2.2-20111031.082334-13)
Is it even possible?
Currently using 2.2-SNAPSHOT as my dependency but I would like to specify a specific SNAPSHOT version (2.2-20111031.082334-13)
Is it even possible?
Just specify the unique snapshot version as you would with any other version. For example:
dependencies {
compile "androidannotations:androidannotations:2.2-20111031.082334-13"
}