Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
@Singleton アノテーションなどを使用するクラスがたくさんあります
@Singleton public class ImageCache
守りたいもの。その注釈を持つすべてのクラスに適用されるように、proguard -keep ステートメントを構成するにはどうすればよいですか。
ところで、Android で Roboguice を使用するアプリにはこれが必要なので、タグを追加しました。他の人を助けるかもしれません。
ProGuard は、ワイルドカードを使用した Java のような構成に基づいています。完全修飾クラス名が必要です。これはうまくいくはずです:
-keep @com.google.inject.Singleton public class *