如何在android studio 3.3.1内的调试模式下运行应用程序?

问题描述 投票:0回答:2

在此之前,我将使用android studio中的调试图标或按Shift + F9在调试模式下运行Android应用程序。在一些更新之后在我的android工作室中执行此操作会导致安装调试版本(不运行它)。即使没有连接和联机的仿真器或设备,它也不会提示目标设备选择窗口(选择某些内容或运行新的仿真器)。

我想知道应该使用哪个命令来安装调试版本,运行它并将调试器附加到应用程序进行调试?

目前我需要执行以下步骤:installDebug,然后在设备内手动运行app,然后将调试器附加到它。

我目前的软件配置如下:

  • Android Studio 3.3.1 - 建于2019年1月29日
  • Gradle插件:3.3.1
  • distributionUrlis在https\://services.gradle.org/distributions/gradle-4.10.3-all.zip内设置为gradle-wrapper.properties

以下是可用的gradle任务列表:

------------------------------------------------------------
All tasks runnable from root project
------------------------------------------------------------

Android tasks
-------------
androidDependencies - Displays the Android dependencies of the project.
signingReport - Displays the signing info for the base and test modules
sourceSets - Prints out all the source sets defined in this project.

Build tasks
-----------
assemble - Assemble main outputs for all the variants.
assembleAndroidTest - Assembles all the Test applications.
build - Assembles and tests this project.
buildDependents - Assembles and tests this project and all projects that depend on it.
buildNeeded - Assembles and tests this project and all projects it depends on.
bundle - Assemble bundles for all the variants.
clean - Deletes the build directory.
cleanBuildCache - Deletes the build cache directory.
compileDebugAndroidTestSources
compileDebugSources
compileDebugUnitTestSources
compileReleaseNonObfuscatedSources
compileReleaseNonObfuscatedUnitTestSources
compileReleaseSources
compileReleaseUnitTestSources

Build Setup tasks
-----------------
init - Initializes a new Gradle build.
wrapper - Generates Gradle wrapper files.

Cleanup tasks
-------------
lintFix - Runs lint on all variants and applies any safe suggestions to the source code.

Help tasks
----------
buildEnvironment - Displays all buildscript dependencies declared in root project 'myproject'.
components - Displays the components produced by root project 'myproject'. [incubating]
dependencies - Displays all dependencies declared in root project 'myproject'.
dependencyInsight - Displays the insight into a specific dependency in root project 'myproject'.
dependentComponents - Displays the dependent components of components in root project 'myproject'. [incubating]
help - Displays a help message.
model - Displays the configuration model of root project 'myproject'. [incubating]
projects - Displays the sub-projects of root project 'myproject'.
properties - Displays the properties of root project 'myproject'.
tasks - Displays the tasks runnable from root project 'myproject' (some of the displayed tasks may belong to subprojects).

Install tasks
-------------
installDebug - Installs the Debug build.
installDebugAndroidTest - Installs the android (on device) tests for the Debug build.
uninstallAll - Uninstall all applications.
uninstallDebug - Uninstalls the Debug build.
uninstallDebugAndroidTest - Uninstalls the android (on device) tests for the Debug build.
uninstallRelease - Uninstalls the Release build.
uninstallReleaseNonObfuscated - Uninstalls the ReleaseNonObfuscated build.

Verification tasks
------------------
check - Runs all checks.
connectedAndroidTest - Installs and runs instrumentation tests for all flavors on connected devices.
connectedCheck - Runs all device checks on currently connected devices.
connectedDebugAndroidTest - Installs and runs the tests for debug on connected devices.
deviceAndroidTest - Installs and runs instrumentation tests using all Device Providers.
deviceCheck - Runs all device checks using Device Providers and Test Servers.
lint - Runs lint on all variants.
lintDebug - Runs lint on the Debug build.
lintRelease - Runs lint on the Release build.
lintReleaseNonObfuscated - Runs lint on the ReleaseNonObfuscated build.
lintVitalRelease - Runs lint on just the fatal issues in the release build.
test - Run unit tests for all variants.
testDebugUnitTest - Run unit tests for the debug build.
testReleaseNonObfuscatedUnitTest - Run unit tests for the releaseNonObfuscated build.
testReleaseUnitTest - Run unit tests for the release build.
android android-gradle gradle-plugin android-studio-3.3
2个回答
0
投票

您可以使用AVD或仿真器以调试模式运行应用程序。

AVD guide


0
投票

按Ctrl + alt + F5(其中Shift + F9启动应用程序是调试模式)

或选择“运行” - >“附加到进程”

选择应用程序的签名,以启用已通过adb安装的调试模式。

© www.soinside.com 2019 - 2024. All rights reserved.