0
我剛搬到新的Ubuntu,並因此安裝了最後一個java版本,它是8(或1.8)。我也安裝了Android Studio 0.5.7。但是,Dalvik不支持Java 8,是嗎?我想保留當前的Java 8,因爲我打算在Java項目中使用它,但我還必須安裝Java 7才能夠在Android中使用它。什麼是正確的方法來做到這一點?隨已安裝Java 8一起安裝Java 7以便能夠構建Android應用程序
UPDATE:
的錯誤:
Error:A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugCompile'.
> Could not find any version that matches com.android.support:appcompat-v7:+.
Required by:
MyApplication:app:unspecified
#應用程序/ build.grandle
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
defaultConfig {
minSdkVersion 8
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:+'
compile fileTree(dir: 'libs', include: ['*.jar'])
}
您可以使用Java 8編譯爲Java 7(或Java 6)字節碼。 –
@ Code-Guru,怎麼樣? –
只要告訴AS使用您的Java 8安裝。 –