* PLT-5517 RN: Image file previewer Add preview component and client routes Add fade transition for modal Add paging controls, title header, and info footer Add drag to dismiss behavior Fix android layout issues Handle orientation change * Fix tests * Review feedback * Review feedback
17 lines
471 B
Java
17 lines
471 B
Java
package com.mattermost;
|
|
|
|
import com.facebook.react.ReactActivity;
|
|
import com.psykar.cookiemanager.CookieManagerPackage;
|
|
import com.BV.LinearGradient.LinearGradientPackage;
|
|
|
|
public class MainActivity extends ReactActivity {
|
|
|
|
/**
|
|
* Returns the name of the main component registered from JavaScript.
|
|
* This is used to schedule rendering of the component.
|
|
*/
|
|
@Override
|
|
protected String getMainComponentName() {
|
|
return "Mattermost";
|
|
}
|
|
}
|