Skip to content

Instantly share code, notes, and snippets.

@dilanasslan
Last active June 23, 2020 17:27
Show Gist options
  • Save dilanasslan/4a719ce0e7679e1ca3541bce5f3cdee2 to your computer and use it in GitHub Desktop.
Save dilanasslan/4a719ce0e7679e1ca3541bce5f3cdee2 to your computer and use it in GitHub Desktop.
package com.huawei.films.view;
import android.app.Application;
import com.huawei.films.model.CloudDBZoneWrapper;
public class CloudDBQuickStartApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
CloudDBZoneWrapper.initAGConnectCloudDB(this);
}
@Override
public void onTerminate() {
super.onTerminate();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment