8

この単純なコードは、proguard が有効になっていると意図したとおりに機能しません。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/coordinator_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/show"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:layout_gravity="top"
        android:layout_marginTop="40dp"
        android:text="Show snackbar" />


    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|right"
        android:layout_margin="16dp"
        android:src="@drawable/ic_save_white_24dp"
        app:layout_anchorGravity="bottom|right|end" />


</android.support.design.widget.CoordinatorLayout>

望ましい動作が表示されたときにFloatingActionButtonプッシュオーバーSnackBarされていますが、プロガードを無効にするまで発生しません。

新しいプロジェクトではデフォルトでプロガードが無効になっているため、これをカバーするチュートリアルもありません;)

Design Support Library のプロガード構成を知っている人はいますか?

4

2 に答える 2