Skip to content

Commit 3b227bf

Browse files
authored
Merge pull request #182 from Instabug/fix/sample-app-token
[MOB-5579] Fix UI Automation Tests
2 parents 0267e49 + a998b95 commit 3b227bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

example/android/app/src/main/kotlin/com/example/InstabugSample/CustomFlutterApplication.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public void onCreate() {
1212
ArrayList<String> invocation_events = new ArrayList<>();
1313
invocation_events.add(InstabugFlutterPlugin.INVOCATION_EVENT_FLOATING_BUTTON);
1414
InstabugFlutterPlugin instabug = new InstabugFlutterPlugin();
15-
instabug.start(CustomFlutterApplication.this, "2d355f559ea67051a56fce82603f8e41", invocation_events);
15+
instabug.start(CustomFlutterApplication.this, "ed6f659591566da19b67857e1b9d40ab", invocation_events);
1616
instabug.setWelcomeMessageMode("WelcomeMessageMode.disabled");
1717
}
18-
}
18+
}

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void main() {
1919
});
2020

2121
Instabug.start(
22-
'efa41f402620b5654f2af2b86e387029', [InvocationEvent.floatingButton]);
22+
'ed6f659591566da19b67857e1b9d40ab', [InvocationEvent.floatingButton]);
2323
}
2424

2525
class MyApp extends StatelessWidget {

0 commit comments

Comments
 (0)