guava が 21.0 で Error:Error converting bytecode to dex: Cause: Dex cannot parse version 52 byte code.

ライブラリ群を更新していると

あやしい Project Structure ダイアログを Experimental にしてライブラリ更新を正しく把握する

ビルドできない...


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.

gradleコンソールを眺めていると以下を発見.


com/google/common/io/InsecureRecursiveDeleteException references unknown class: java/nio/file/FileSystemException

下げます guava.


//compile 'com.google.guava:guava:21.0'
compile 'com.google.guava:guava:20.0'

いけた.

Java7向けのセットが残ってるんかな.

Issues · google/guava

java - Android: Dex cannot parse version 52 byte code - Stack Overflow


com.android.support.* の dependencies のバージョンが揃わない件

直感的に分かりかねる(分からない)のが「com.android.support.*」の内部的な依存関係.

今や, 下位互換の compat が本流となり, support やら v7 やら v4 やら複雑すぎて.

ふと, RecyclerView のバグらしく.

it is fixed internally, so in the next release it should be fine.

Issue 230295 - android - RecyclerView 25.1.0 StaggeredGridLayoutManager GapWorker prefetch FC with full-span items - Android Open Source Project - Issue Tracker - Google Project Hosting

なので, やむなくバージョンを 25.1.0 から 25.0.1 に下げる.

すると, AndroidStudio が build.gradle の該当行を色変化で「新バージョンがあるよ」と教えてくるが無視.

ところが, 入れ替わってないようで, 同様の Exception.

java.lang.IllegalArgumentException: Pixel distance must be non-negative

プロジェクト自体 clean しても rebuild しても変化なしで

「バージョンがコンフリクト」

と言われまくる.

解決法

ResolutionStrategy で強制.
ResolutionStrategy - Gradle DSL Version 3.3


configurations.all {
  resolutionStrategy {
    force "com.android.support:support-v4:$rootProject.supportLibraryVersion"
    force "com.android.support:recyclerview-v7:$rootProject.supportLibraryVersion"
    force "com.android.support:appcompat-v7:$rootProject.supportLibraryVersion"
    force "com.android.support:support-compat:$rootProject.supportLibraryVersion"
    force "com.android.support:support-annotations:$rootProject.supportLibraryVersion"
    force "com.android.support:design:$rootProject.supportLibraryVersion"
    force "com.android.support:cardview-v7:$rootProject.supportLibraryVersion"
    force "com.android.support:percent:$rootProject.supportLibraryVersion"
  }
}

外部ライブラリからの依存があるようで, androidDependencies に頼りながらシコシコ強制.

25.1.0 が remove されたのはビルド時ログで確認できたが.

グループとかツリーの根本からの指定とかあるのではないかと思いつつ朝.

android-apt が不要となった ButterKnife


新しくなった Gradle Tips and Recipes : 各ソースセットの配置の確認

新しくなってます, Gradle Tips and Recipes .

Gradle Tips and Recipes | Android Studio

Gradle が利用するディレクトリ

それぞれ指定できるのはなんとなく知っていたが.


android {
  ...
  sourceSets {
    main {
      java.srcDirs = ['other/java']
    ....

これらの記述無し無指定のデフォルトの場合はどのディレクトリが利用対象になっているのか.

ドキュメントやツールスクリプトなど,

Git に登録して管理はしたいが, アプリ自体に影響ない位置はどこなのか??

と思っていましたが.

Configure Build Variants | Android Studio

右上 [Gradle] タブから以下ダブルクリックで実行.

MyApplication > Tasks > android > sourceSets

Gradle が認識している対象ディレクトリ群が Gradle Console に出力される.


------------------------------------------------------------
Project :app
------------------------------------------------------------

...

debug
----
Compile configuration: compile
build.gradle name: android.sourceSets.debug
Java sources: [app/src/debug/java]
Manifest file: app/src/debug/AndroidManifest.xml
Android resources: [app/src/debug/res]
Assets: [app/src/debug/assets]
AIDL sources: [app/src/debug/aidl]
RenderScript sources: [app/src/debug/rs]
JNI sources: [app/src/debug/jni]
JNI libraries: [app/src/debug/jniLibs]
Java-style resources: [app/src/debug/resources]

これで, AndroidStudio でファイルを操作しながらの Git 管理しても安心です.

他にもあれこれ小技がのっていますよ, このレシピ.