NoahBres / MeepMeep

Path visualization tool for Road Runner
63 stars 34 forks source link

Add JitPack Instructions to Get Latest Commit #13

Open NoahBres opened 2 years ago

NoahBres commented 2 years ago

for future reference, for jitpack projects you're able to pull dependencies with specific commits like so: dependencies { // Specific tagged version implementation 'com.github.NoahBres:MeepMeep:2.0.1'

// Pull from whatever the latest commit is
implementation 'com.github.NoahBres:MeepMeep:-SNAPSHOT'

// Pull from specific commit
implementation 'com.github.NoahBres:MeepMeep:79d123f0c1'

}

NoahBres commented 2 years ago