We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6fde81 + 0f82306 commit b588600Copy full SHA for b588600
simpledialogfragment/src/main/java/com/julienarzul/simpledialogfragment/AndroidStringResource.java
@@ -1,6 +1,7 @@
1
package com.julienarzul.simpledialogfragment;
2
3
import android.content.Context;
4
+import android.os.Parcelable;
5
import android.support.annotation.Nullable;
6
import android.support.annotation.StringRes;
7
@@ -12,7 +13,7 @@
12
13
* Copyright @ Julien Arzul 2017
14
*/
15
@AutoValue
-abstract class AndroidStringResource {
16
+abstract class AndroidStringResource implements Parcelable {
17
18
static AndroidStringResource create(@StringRes int stringResId) {
19
return new AutoValue_AndroidStringResource(null, stringResId);
0 commit comments