应用程序启动时应用程序类不运行?

时间:2016-12-30 22:08:19

标签: android

我正在使用Application类,但是当App启动时它没有运行 这是我的代码:

public class App extends Application {
//
private static final String TAG = App.class.getSimpleName();
public static SharedPreferences sPrefs;
private static App sInstance;

public static App getsInstance() {
    return sInstance;
}

@Override
public void onCreate() {
    super.onCreate();
    if (!BuildConfig.DEBUG) {
        Fabric.with(this, new Crashlytics());
    }
    Log.e(TAG,"onCreate()");
    sInstance = this;
    sPrefs = PreferenceManager.getDefaultSharedPreferences(this);
}
//some methods
}
AndroidManifest.xml中的

<application
    android:name=".App"
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

当我在onCreate()中放入断点并运行调试时它不会停止在它上面 有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

尝试卸载应用,清理项目并重新安装。