Tesis 1.0.0
Loading...
Searching...
No Matches
MyApplication.java
Go to the documentation of this file.
1package com.example.food_front;
2
3import android.app.Application;
4import android.content.Context;
5import android.util.Log;
6
11public class MyApplication extends Application {
12
13 private static MyApplication instance;
14
15 @Override
16 public void onCreate() {
17 super.onCreate();
18 instance = this;
19 Log.d("MyApplication", "Aplicación iniciada");
20 }
21
25 public static MyApplication getInstance() {
26 return instance;
27 }
28
32 public Context getApplicationContext() {
33 return super.getApplicationContext();
34 }
35}