Skip to content

Commit 83e79a2

Browse files
fix: dart format
1 parent 76aaa64 commit 83e79a2

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
android {
99
namespace = "com.instabug.flutter.example"
10-
compileSdk = 35
10+
compileSdk = flutter.compileSdkVersion
1111
ndkVersion = flutter.ndkVersion
1212

1313
compileOptions {
@@ -26,7 +26,7 @@ android {
2626
defaultConfig {
2727
applicationId "com.instabug.flutter.example"
2828
minSdkVersion 21
29-
targetSdkVersion 35
29+
targetSdkVersion 34
3030
versionCode flutter.versionCode
3131
versionName flutter.versionName
3232
multiDexEnabled true

example/android/app/src/androidTest/java/com/instabug/flutter/example/MainActivityTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import androidx.test.platform.app.InstrumentationRegistry;
44

5+
import com.example.InstabugSample.MainActivity;
6+
57
import org.junit.Test;
68
import org.junit.runner.RunWith;
79
import org.junit.runners.Parameterized;

example/android/app/src/main/kotlin/com/example/InstabugSample/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.instabug.flutter.example
1+
package com.example.InstabugSample
22

33
import com.example.InstabugSample.InstabugExampleMethodCallHandler
44
import com.example.InstabugSample.InstabugExampleMethodCallHandler.Companion.METHOD_CHANNEL_NAME

example/integration_test/surveys_test.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ void main() {
2121
expect(isAndroid ? title.androidViews.length : title.iosViews.length,
2222
equals(1));
2323
},
24-
framePolicy: LiveTestWidgetsFlutterBindingFramePolicy.fullyLive,
2524
);
2625
});
2726
}

0 commit comments

Comments
 (0)