-
-
Save aldakur/ecffe7818640ca006861d6539c66f46c 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.android.example.application; | |
import android.app.Application; | |
import com.gunhansancar.android.sdk.helper.LocaleHelper; | |
/** | |
* When your application is launched this class is loaded before all of your activies. | |
* And the instance of this class will live through whole application lifecycle. | |
* <p/> | |
* Created by gunhansancar on 16/02/15. | |
*/ | |
public class MainApplication extends Application { | |
@Override | |
public void onCreate() { | |
super.onCreate(); | |
LocaleHelper.onCreate(this, "en"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment