Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove splashscreen from MainActivity
  • Loading branch information
bparrishMines committed Nov 11, 2019
commit 692502195fe243981e5b2380423ace8b4849a033
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ private Map<String, Object> getMapFromPendingDynamicLinkData(

private void handleGetInitialDynamicLink(final Result result) {
// If there's no activity, then there's no initial dynamic link.
if (registrar.activity() == null && activityBinding == null) {
if ((registrar != null && registrar.activity() == null) && activityBinding == null) {
result.success(null);
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<meta-data
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
android:value="true" />
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:e2e/e2e.dart';

import '../lib/firebase_dynamic_links.dart';

void main() {
E2EWidgetsFlutterBinding.ensureInitialized();

Expand Down