diff --git a/src/plugins/android/androiddebugsupport.cpp b/src/plugins/android/androiddebugsupport.cpp
index dd4905a08a78b283019c72fe150c01a683ce1b61..d716e7b6106312d446911def9e6ff82b6ea94612 100644
--- a/src/plugins/android/androiddebugsupport.cpp
+++ b/src/plugins/android/androiddebugsupport.cpp
@@ -130,8 +130,7 @@ RunControl *AndroidDebugSupport::createDebugRunControl(AndroidRunConfiguration *
 AndroidDebugSupport::AndroidDebugSupport(AndroidRunConfiguration *runConfig,
     DebuggerRunControl *runControl)
     : QObject(runControl), m_runControl(runControl),
-      m_runner(new AndroidRunner(this, runConfig, true)),
-      m_gdbServerPort(5039)
+      m_runner(new AndroidRunner(this, runConfig, true))
 {
     Debugger::DebuggerRunConfigurationAspect *aspect
             = runConfig->extraAspect<Debugger::DebuggerRunConfigurationAspect>();
diff --git a/src/plugins/android/androiddebugsupport.h b/src/plugins/android/androiddebugsupport.h
index 5ea315ce9ce96de28b8c81c26db8b0aaebeb3398..41a524b581ff8f81c66a6f4789ac4ed68a72dcce 100644
--- a/src/plugins/android/androiddebugsupport.h
+++ b/src/plugins/android/androiddebugsupport.h
@@ -64,8 +64,6 @@ private:
     Debugger::DebuggerRunControl* m_runControl;
     AndroidRunner * const m_runner;
     const QString m_dumperLib;
-
-    int m_gdbServerPort;
 };
 
 } // namespace Internal