| 123456789101112131415161718192021222324252627282930 | xdescribe('android application lifecycle', () => {
  it('normal launch', () => {
    //
  });
  it('launch already running in background', () => {
    //
  });
  it('launch after activity killed by system', () => {
    //
  });
  it('launch and ask react overlay permissions', () => {
    //
  });
  it('launch after reactContext killed by system', () => {
    //
  });
  it('launch from push notification', () => {
    //
  });
  it('launch from intent filter', () => {
    //
  });
});
 |