应用程序在模拟器中工作但不在手机上

时间:2015-04-24 11:14:57

标签: android android-studio emulation zxing android-4.4-kitkat

我正在开发的应用程序在我的模拟器上完美运行,但在我尝试调试它时,它无法在我的手机上运行。我只收到消息:

  

警告:调试信息可能不可用。请使用ADB关闭其他应用程序:Monitor,DDMS,Eclipse   重新启动ADB集成,然后重试。   等待过程:com.deliciouslymad.tsukasa.critterbytes

它永远挂在那里,我的手机没有变化。它在重新启动或清理项目后也不起作用。我已经在这个网站上尝试了很多解决方案,但没有一个解决了这个问题。

-UPDATE - 亚行日志:

ddms: null
java.lang.NullPointerException
    at com.android.ddmlib.Client.sendAndConsume(Client.java:673)
    at com.android.ddmlib.HandleHello.sendHELO(HandleHello.java:195)
    at com.android.ddmlib.HandleHello.sendHelloCommands(HandleHello.java:66)
    at com.android.ddmlib.Client.getJdwpPacket(Client.java:772)
    at com.android.ddmlib.MonitorThread.processClientActivity(MonitorThread.java:317)
    at com.android.ddmlib.MonitorThread.run(MonitorThread.java:263)
  • .apk安装在我的手机上就好了。
  • 我在手机设置中启用了“USB调试”,“允许模拟位置”和“验证USB上的应用”功能。运行时是Dalvik,它作为媒体设备连接。
  • 我的手机运行Android 4.4.4。
  • 如果有帮助,我正在将Zxing库实现到我的条形码扫描代码中。

这是我的AndroidManifest.xml代码:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.deliciouslymad.tsukasa.critterbytes">

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme">
    <activity android:name="ScannerActivity"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

这是我的build.gradle代码:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion '21.1.2'

    defaultConfig {
        applicationId "com.deliciouslymad.tsukasa.critterbytes"
        minSdkVersion 16
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

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

此外,在我的应用程序的项目结构中,“Compile Sdk Version”是API 21,“Build Tools Version”是21.1.2。 “源兼容性”和“目标兼容性”是空白的,我不确定是否应该有任何内容。

gradle构建良好,没有错误,但有一些奇怪的东西;当我将鼠标悬停在build.gradle文件中的'getDefaultProguardFile'上时,它表示它无法解析符号。

我是一名初级程序员并且正在努力学习,所以如果有任何遗漏或任何我可以改进的地方,请告诉我!这有点压倒性,我无法弄清楚为什么它不起作用。

0 个答案:

没有答案