mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-03-13 07:00:10 +01:00
13 lines
254 B
Java
13 lines
254 B
Java
package com.simplemobiletools.notes;
|
|
|
|
import android.app.Application;
|
|
|
|
import com.facebook.stetho.Stetho;
|
|
|
|
public class App extends Application {
|
|
public void onCreate() {
|
|
super.onCreate();
|
|
Stetho.initializeWithDefaults(this);
|
|
}
|
|
}
|