Android Studio - 支持包

时间:2014-09-30 21:46:59

标签: android android-studio bundle

Android Studio没有为我提供“Bundle”类的所有方法。

当我想使用.getString()时,它会将我显示为错误。我不知道为什么!?!?!

这是我的傻瓜:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 20
    buildToolsVersion "20.0.0"

    defaultConfig {
        applicationId "test.android.com.test"
        minSdkVersion 14
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile project(':facebook')
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.nineoldandroids:library:2.4.+'
    compile 'com.android.support:support-v13:20.0.+'
    compile 'com.google.android.gms:play-services:4.2.42'
    compile 'com.mcxiaoke.volley:library:1.0.6'
}

1 个答案:

答案 0 :(得分:0)

最后我找到了解决方案。如果有人在这里有同样的问题你去。

更改自:

compileSdkVersion 20
buildToolsVersion "20.0.0"

更改为:

compileSdkVersion 19
buildToolsVersion "19.0.0"