为Jelly Bean设置Android Studio

时间:2016-07-16 06:00:32

标签: android android-studio android-4.1-jelly-bean

我使用Hello World编写了一个小Android Studio程序。最小的sdk API是16.我安装了在API 21上运行的虚拟设备,程序运行正常。我还尝试在带有Android 6手机的Galaxy S5上运行该程序,该程序运行正常。

然后我连接了我的手机(Galaxy S2和Jelly Bean)并尝试在手机上运行它。但是它只关闭了应用程序并显示程序已关闭。

Here is the log shown by Android Studio

这是Module:app build.gradle文件:

apply plugin: 'com.android.application'

    android {
        compileSdkVersion 24
        buildToolsVersion "21.1.2"
        defaultConfig {
        applicationId "magu.schwaderina"
        minSdkVersion 16
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
        }
        buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        }
    }

    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
        })
        compile 'com.android.support:appcompat-v7:24.0.0'
        compile 'com.android.support:support-v4:24.0.0'
        compile 'com.android.support:support-vector-drawable:24.0.0'
        testCompile 'junit:junit:4.12'
    }

可以找到整个项目目录here。如果有任何帮助,我会非常感激。

编辑:我忘了提到我在Ubuntu 14.4上使用Android Studio 2.2 Prev 5

2 个答案:

答案 0 :(得分:1)

如果您使用的是Gradle插件的v1.5.0或更低版本,则需要在应用的build.gradle中使用以下代码:

android {
  defaultConfig {
    // Stops the Gradle plugin’s automatic rasterization of vectors
    generatedDensities = []
  }
  // Flag to tell aapt to keep the attribute ids around
  aaptOptions {
    additionalParameters "--no-version-vectors"
  }
}

https://medium.com/@chrisbanes/appcompat-v23-2-age-of-the-vectors-91cbafa87c88#.njl8u0f91

答案 1 :(得分:0)

您的日志中提供了所有信息,请仔细阅读,并发现您的问题(与Vector Drawable相关)。所有信息都在日志​​中调出(包括行号等),所以只需按照错误解释您遇到的问题。

从日志底部开始向上移动。根据以下消息,您将看到您所包含的Vector Drawables存在问题:

java.lang.RuntimeException: Unable to start activity ComponentInfo{magu.schwaderina/magu.schwaderina.Main}: android.content.res.Resources$NotFoundException: File res/drawable/abc_ic_ab_back_material.xml from drawable resource ID #0x7f020013

然后,如果你进一步向上移动,你会发现其他有趣的花絮,包括:

E/VdcInflateDelegate: Exception while inflating <vector>
                  org.xmlpull.v1.XmlPullParserException: Binary XML file line #17<vector> tag requires viewportWidth > 0
                      at