Last active
June 23, 2020 17:27
-
-
Save dilanasslan/4a719ce0e7679e1ca3541bce5f3cdee2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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