当前位置: 首页 > 知识库问答 >
问题:

错误:在Android Studio中,在源代码1.6中不支持开关中的字符串(使用源代码7或更高版本来启用开关中的字符串)

程成天
2023-03-14

我在Eclipse中创建了一个项目,但现在我正在将该项目转换为android studio项目。但当我试图运行转换后的项目时,我在android studio的Messeges选项卡中得到了“错误:在-source 1.6中不支持switch中的字符串(使用-source 7或更高版本来启用switch中的字符串)”

我的身材。格雷德尔锉刀

apply plugin: 'com.android.application'

android {
compileSdkVersion 19
buildToolsVersion "23.0.0"

defaultConfig {
    applicationId "com.pcs.sliderringtineproj"
    minSdkVersion 10
    targetSdkVersion 19

}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'),     'proguard-rules.txt'
    }

}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
dependencies {
compile project(':facebookSDK')
compile 'com.android.support:support-v4:19.1.0'
compile 'com.android.support:appcompat-v7:20.+'
compile files('libs/acra-4.5.0.jar')
compile files('libs/aspectjrt-1.7.3.jar')
compile files('libs/commons-io-2.4.jar')
compile files('libs/fmmr.jar')
compile files('libs/isoparser-1.0.1.jar')
compile files('libs/libGoogleAnalytics.jar')
compile files('libs/log4j-1.2.15.jar')
compile files('libs/picasso-2.4.0.jar')
compile files('libs/universal-image-loader-1.9.0.jar')
}

共有1个答案

孟均
2023-03-14

打开应用程序模块的build.gradle文件,并将以下内容添加到名为android的部分:

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_7
    targetCompatibility JavaVersion.VERSION_1_7
}
 类似资料: