Skip to content

Commit c44807d

Browse files
Dave Jonesuerceg
authored andcommitted
Issue 307: Fix typos in Proguard rules & README
Further to #300, there are other examples of the typo in the README and other proguard configuration files within the library and sample app.
1 parent 7c9f6ed commit c44807d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Adjust/adjust/adjust-proguard-rules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
java.lang.String CPU_ABI;
1818
}
1919
-keep class android.content.res.Configuration {
20-
android.os.LocaledList getLocales();
20+
android.os.LocaleList getLocales();
2121
java.util.Locale locale;
2222
}
23-
-keep class android.os.LocaledList {
23+
-keep class android.os.LocaleList {
2424
java.util.Locale get(int);
2525
}
2626
-keep public class com.android.installreferrer.** { *; }

Adjust/example/proguard-rules.pro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
java.lang.String CPU_ABI;
3333
}
3434
-keep class android.content.res.Configuration {
35-
android.os.LocaledList getLocales();
35+
android.os.LocaleList getLocales();
3636
java.util.Locale locale;
3737
}
38-
-keep class android.os.LocaledList {
38+
-keep class android.os.LocaleList {
3939
java.util.Locale get(int);
4040
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ If you are using Proguard, add these lines to your Proguard file:
157157
android.os.LocaleList getLocales();
158158
java.util.Locale locale;
159159
}
160-
-keep class android.os.LocaledList {
160+
-keep class android.os.LocaleList {
161161
java.util.Locale get(int);
162162
}
163163
-keep public class com.android.installreferrer.** { *; }

0 commit comments

Comments
 (0)