package com.heinrichreimersoftware.materialintro.app;
import android.support.annotation.StringRes;
import android.view.View;
public interface ButtonCtaFragment {
View.OnClickListener getButtonCtaClickListener();
/**
* Note: you must either define a {@link String} or a {@link StringRes} label
*/
String getButtonCtaLabel();
/**
* Note: you must either define a {@link String} or a {@link StringRes} label
*/
@StringRes
int getButtonCtaLabelRes();
}
は、これは私が問題を抱えているクラスです。非常に困難なエラー
Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. > com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/heinrichreimersoftware/materialintro/app/ButtonCtaFragment.class
私はこれをどのように修正することができますか?
あなたは 'gradle clean'をしましたか?私は古いキャッシュされたクラスファイルがあるときにこれを見ます。 – emerssso