package com.xbilling.xsmsgate;

import android.app.Application;
import io.objectbox.BoxStore;

public class Aplikasi extends Application {
    private BoxStore boxStore;
    
    @Override
    public void onCreate() {
        super.onCreate();
        
        // Initialize ObjectBox
        boxStore = MyObjectBox.builder().androidContext(this).build();
        
        // Initialize Firebase
        // FirebaseApp.initializeApp(this);
        
        // Start background service
        // startService(new Intent(this, BackgroundService.class));
    }
    
    public BoxStore getBoxStore() {
        return boxStore;
    }
}