File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const writeIbgBuildGradle = (contents) => {
19
19
const getAndroidVersion = ( ) => {
20
20
const target = path . join ( 'config.xml' ) ;
21
21
let file = fs . readFileSync ( target , 'utf-8' ) ;
22
- const androidEngine = file . match ( / e n g i n e n a m e = " a n d r o i d " s p e c = " \^ [ 1 - 9 ] + .[ 0 - 9 ] + .[ 0 - 9 ] + " / g) ;
22
+ const androidEngine = file . match ( / e n g i n e n a m e = " a n d r o i d " s p e c = " \^ ? [ 1 - 9 ] + .[ 0 - 9 ] + .[ 0 - 9 ] + " / g) ;
23
23
if ( androidEngine ) {
24
24
const version = androidEngine [ 0 ] . match ( / [ 1 - 9 ] + .[ 0 - 9 ] + .[ 0 - 9 ] + / g) ;
25
25
if ( version ) {
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ public void onCreate()
19
19
{
20
20
new Instabug .Builder (
21
21
this ,
22
- "6e9964eddd1a350d6dabf176c6328dac " ,
23
- InstabugInvocationEvent .FLOATING_BUTTON
22
+ "APP_TOKEN " ,
23
+ InstabugInvocationEvent .SHAKE
24
24
).build ();
25
25
BugReporting .setFloatingButtonEdge (InstabugFloatingButtonEdge .LEFT );
26
26
BugReporting .setFloatingButtonOffset (250 );
You can’t perform that action at this time.
0 commit comments