Android: Fix path to android.xml

Change-Id: I646d6af6dbf8734ebaad643cb389a60d66061491
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Daniel Teske
2013-02-20 16:17:48 +01:00
parent 1951c86395
commit 82f8ba6581

View File

@@ -82,8 +82,8 @@ namespace {
static QString sdkSettingsFileName()
{
return QString::fromLatin1("%1/android.xml")
.arg(QFileInfo(Core::ICore::settings(QSettings::SystemScope)->fileName()).absolutePath());
return QFileInfo(Core::ICore::settings(QSettings::SystemScope)->fileName()).absolutePath()
+ QLatin1String("/qtcreator/android.xml");
}
bool androidDevicesLessThan(const AndroidDeviceInfo &dev1, const AndroidDeviceInfo &dev2)