diff options
author | BogDan Vatra <[email protected]> | 2014-06-24 16:47:38 +0200 |
---|---|---|
committer | Daniel Teske <[email protected]> | 2014-07-21 12:41:14 +0200 |
commit | 6a4c47b1768492fb2839438b42b7e0e411925d72 (patch) | |
tree | 6246fec74da97144c72637b34e655a9da1f1501c /src/plugins/android/androidplugin.cpp | |
parent | 8481c91fbf2257b74c19e93174140fe530a0e019 (diff) |
AndroidDebugSupport: Split up into general and qmake specific part
Introudce AndroidQtSupport. The derived class will eventually move to
the qmakeprojectmanager plugin.
Change-Id: I3fdc98259644fe718eb15aa9bd11d92dc0cdb1af
Reviewed-by: BogDan Vatra <[email protected]>
Diffstat (limited to 'src/plugins/android/androidplugin.cpp')
-rw-r--r-- | src/plugins/android/androidplugin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/android/androidplugin.cpp b/src/plugins/android/androidplugin.cpp index 8f370a2ae5d..37b6180f7e2 100644 --- a/src/plugins/android/androidplugin.cpp +++ b/src/plugins/android/androidplugin.cpp @@ -47,6 +47,7 @@ #include "javaeditorfactory.h" #include "javacompletionassistprovider.h" #include "javafilewizard.h" +#include "qmakeandroidsupport.h" #ifdef HAVE_QBS # include "androidqbspropertyprovider.h" #endif @@ -85,6 +86,7 @@ bool AndroidPlugin::initialize(const QStringList &arguments, QString *errorMessa addAutoReleasedObject(new Internal::JavaEditorFactory); addAutoReleasedObject(new Internal::JavaCompletionAssistProvider); addAutoReleasedObject(new Internal::JavaFileWizard); + addAutoReleasedObject(new Internal::QmakeAndroidSupport); ProjectExplorer::KitManager::registerKitInformation(new Internal::AndroidGdbServerKitInformation); // AndroidManifest.xml editor |