Nicholi
Nicholi

Reputation: 1093

Android SDK Source Tag

Once you select which device version you will be developing on, what is the different between the tagged versions in git repository?

Example:
android-2.1_r1
android-sdk-2.1_r1

Is checking out one more correct than the other for debugging/stepping through code? Been using the tags with "-sdk" in name, just curious what the difference between the two are.

Upvotes: 1

Views: 421

Answers (1)

Adam Dymitruk
Adam Dymitruk

Reputation: 129526

try git diff android-2.1_r1 android-sdk-2.1_r1

Upvotes: 1

Related Questions