질문 에 프로그래밍 방식의 솔루션 이 필요 하지 않은 것 같지만 Google 검색으로 인해 나를 여기로 데려 왔습니다. 다음은 가장 일반적인 설치 경로를 기반으로 SDK가 설치된 위치를 감지하려는 C # 시도입니다.
static string FindAndroidSDKPath()
{
string uniqueFile = Path.Combine("platform-tools", "adb.exe"); // look for adb in Android folders
string[] searchDirs =
{
// User/AppData/Local
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
// Program Files
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles),
// Program Files (x86) (it's okay if we're on 32-bit, we check if this folder exists first)
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles) + " (x86)",
// User/AppData/Roaming
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
};
foreach (string searchDir in searchDirs)
{
string androidDir = Path.Combine(searchDir, "Android");
if (Directory.Exists(androidDir))
{
string[] subDirs = Directory.GetDirectories(androidDir, "*sdk*", SearchOption.TopDirectoryOnly);
foreach (string subDir in subDirs)
{
string path = Path.Combine(subDir, uniqueFile);
if (File.Exists(path))
{
// found unique file at DIR/Android
return subDir;
}
}
}
}
// no luck finding SDK! :(
return null;
}
Android Studio / Gradle과 함께 작동하기 위해 C # 프로그램에 대한 확장을 작성하고 있기 때문에 이것이 필요합니다. 다른 사람이이 방법이 유용 할 수 있기를 바랍니다.