-
-
Save gunhansancar/497e801b1d8e443f97a453571ed5f7dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.gunhansancar.changelanguageexample; | |
import android.app.Application; | |
import android.content.Context; | |
import com.gunhansancar.changelanguageexample.helper.LocaleHelper; | |
public class MainApplication extends Application { | |
@Override | |
protected void attachBaseContext(Context base) { | |
super.attachBaseContext(LocaleHelper.onAttach(base, "en")); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment