Skip to content

Commit 79cc161

Browse files
committed
🐛 Modify fixnum package
1 parent 920d51a commit 79cc161

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

2828
android {
29-
compileSdkVersion 33 // flutter.compileSdkVersion
30-
ndkVersion 23.1.7779620 // flutter.ndkVersion
29+
compileSdkVersion flutter.compileSdkVersion
30+
// ndkVersion flutter.ndkVersion
3131

3232
compileOptions {
3333
sourceCompatibility JavaVersion.VERSION_1_8

lib/screens/exporting_screen.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import 'package:flutter/cupertino.dart';
55
import 'package:flutter/material.dart';
66
import 'package:permission_handler/permission_handler.dart';
77
import 'package:wax/basic/methods.dart';
8-
8+
import 'package:fixnum/fixnum.dart' as $fixnum;
99
import '../basic/commons.dart';
1010
import '../configs/android_version.dart';
1111

1212
class ExportingScreen extends StatefulWidget {
13-
final List<Int64> selected;
13+
final List<$fixnum.Int64> selected;
1414

1515
const ExportingScreen(this.selected, {Key? key}) : super(key: key);
1616

0 commit comments

Comments
 (0)