Android Studio 2.1に切り替えたところ、以前は機能していたアプリをコンパイルしようとすると、このエラーが表示されました。
Error:Error converting bytecode to dex: Cause: Dex cannot parse version 52 byte code. This is caused by library dependencies that have been compiled using Java 8 or above. If you are using the 'java' gradle plugin in a library submodule add targetCompatibility = '1.7' sourceCompatibility = '1.7' to that submodule's build.gradle file.
Java 1.7コード生成を強制するために、メインプロジェクトのgradle.buildファイルを既に更新しました。
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
}
Javaのバージョンを設定するために、モジュールgradle.buildも次のように更新しました。
android {
compileSdkVersion 19
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.abc.def"
minSdkVersion 19
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
}
}
Mavenでビルドされるサブモジュール。pom.xmlファイルでは、1.7コード生成を強制することも試みました。
下位モジュールを組み込んだアセンブリアーティファクトを使用していることを理解していますが、下位モジュールを変更していないため、モジュールの結果の.jarファイルは前回コンパイルしたときに正常に実行されました。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <!-- maven-compiler-plugin -->
<version>2.6</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
私の質問:1)これはAndroid Studio 2.1の問題ですか?他の人はそれを見ましたか?2)これが私のエラーであるとすると、エラーメッセージは不良モジュールを見つけるのに役立たないので、V52コードの検索に関する推奨事項はありますか?大量のコードを壊さずに、ライブラリを省略することはできません。コードリビジョンを見つけるために.jarファイルを検査できますか?前もって感謝します。-ヘファイストス