Fix playstore flavor

This commit is contained in:
Thomas 2020-07-18 18:20:49 +02:00
parent 732eea4d9c
commit 361857aff4
1 changed files with 14 additions and 0 deletions

View File

@ -17,6 +17,8 @@ package app.fedilab.android.activities;
import android.content.Intent;
import com.kobakei.ratethisapp.RateThisApp;
@ -31,4 +33,16 @@ public class MainActivity extends BaseMainActivity {
RateThisApp.showRateDialogIfNeeded(this);
}
@Override
protected void launchOwnerStatusesActivity() {
Intent myIntent = new Intent(MainActivity.this, OwnerStatusActivity.class);
startActivity(myIntent);
}
@Override
protected void launchOwnerNotificationsActivity() {
Intent myIntent = new Intent(MainActivity.this, OwnerNotificationActivity.class);
startActivity(myIntent);
}
}