You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,8 @@ It has the following set of Helpers:
10
10
* BaseFragment
11
11
* ApiClient (Retrofit http client)
12
12
* Api (Volley http client for direct Web Calls)
13
-
* Alerts
14
-
* AppSession
13
+
* Alerts (AlertDialog, Toast, SnakeBar)
14
+
* AppSession (Ready to go, Shared Preferences Storage)
15
15
* ConnectionDetector
16
16
* DateTimeFormatter
17
17
* ImageLoader (support any type of image including SVGs)
@@ -71,6 +71,13 @@ dependencies {
71
71
72
72
And you're good to go...
73
73
74
+
### MultiLingual App?
75
+
if you are creating an application with multiple languages, make sure to set the Accept Language.
76
+
where ever you are making the change just call this following line with your desired locale then recreate your activity to change the language at run time.
77
+
78
+
```AppSession.setAccept_Language("en");``` and ```AppSession.getAccept_Language();``` to retrieve it.
0 commit comments