I try to resurrect and compile old android app project which used some old version csoundandroid for Eclipse ADT, somewhere between 6.01 to 6.05 versions.
But i can`t find it, and link to older versions archive is not workin now ![]()
Please help me to find it.
Clone the repository on your computer:
git clone https://github.com/gogins/csound-android.git
Then go into the project folder:
cd csound-android
β¦ and check the git log entries between 2012 and 2015:
git log --since=2012 --until=2015
Maybe you recognize the specific version you are looking for. If found, copy the commit identifier, and checkout that specific commit:
git checkout <old_commit identifier>
Then that version is on your disk. If itβs not the good one, just checkout a different commit and verify again.
Thomas