diff --git a/runtimes/android/androidpreferences.h b/runtimes/android/androidpreferences.h --- a/runtimes/android/androidpreferences.h +++ b/runtimes/android/androidpreferences.h @@ -31,6 +31,7 @@ explicit AndroidPreferences(KDevelop::IPlugin* plugin, KCoreConfigSkeleton* config, QWidget* parent = nullptr); ~AndroidPreferences() override; + KDevelop::ConfigPage::ConfigPageType configPageType() const override; QString name() const override; private: QScopedPointer m_prefsUi; diff --git a/runtimes/android/androidpreferences.cpp b/runtimes/android/androidpreferences.cpp --- a/runtimes/android/androidpreferences.cpp +++ b/runtimes/android/androidpreferences.cpp @@ -28,6 +28,11 @@ AndroidPreferences::~AndroidPreferences() = default; +KDevelop::ConfigPage::ConfigPageType AndroidPreferences::configPageType() const +{ + return KDevelop::ConfigPage::RuntimeConfigPage; +} + QString AndroidPreferences::name() const { return QStringLiteral("Android"); diff --git a/runtimes/android/kdevandroid.json b/runtimes/android/kdevandroid.json --- a/runtimes/android/kdevandroid.json +++ b/runtimes/android/kdevandroid.json @@ -8,7 +8,7 @@ "Name[x-test]": "xxAleix Polxx" } ], - "Category": "Global", + "Category": "Runtimes", "Description": "Exposes Android runtimes", "Description[ca@valencia]": "Exposa el temps d'execució de l'Android", "Description[ca]": "Exposa el temps d'execució de l'Android",