如何使用adb启动Android应用程序?

时间:2016-10-07 10:56:06

标签: android command-line adb launch

我的AndroidManifest.xml文件有

<intent-filter>...</intent-filter>

但是当我写下adb shell时,请启动-n com.xxx.applicationname / .MainActivity

记录

错误类型:3

错误:活动类不存在

编辑我的gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 'Google Inc.:Google APIs:23'
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.xxx.applicationname"
        minSdkVersion 9
        targetSdkVersion 17
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:24.1.1'
}

1 个答案:

答案 0 :(得分:0)

在Android清单文件中检查应用程序的路径以调用Activiy。 例如,当您通过触摸手机屏幕打开应用程序时,在日志目录中将出现类似这样的提示。 enter image description here

然后在android清单文件enter image description here中找到详细信息

在此示例中,链接是活动“ android:name = Setting $ WifiDisplaySettingsActivity”的名称

因此,这种情况的命令是:

adb shell am start -n 'com.android.settings/.Settings\$WifiDisplaySettingsActivity'

注意:撇号''和反斜杠\非常重要。您不应该错过它。