File tree Expand file tree Collapse file tree 7 files changed +182
-109
lines changed Expand file tree Collapse file tree 7 files changed +182
-109
lines changed Original file line number Diff line number Diff line change 17
17
java-version : ' 12.x'
18
18
- uses : subosito/flutter-action@v1
19
19
with :
20
- flutter-version : ' 2.5 .0'
20
+ flutter-version : ' 3.0 .0'
21
21
- run : flutter pub get
22
22
# - run: flutter analyze
23
23
- run : flutter format -n --set-exit-if-changed .
Original file line number Diff line number Diff line change @@ -25,13 +25,14 @@ apply plugin: 'com.android.application'
25
25
apply from : " $flutterRoot /packages/flutter_tools/gradle/flutter.gradle"
26
26
27
27
android {
28
- compileSdkVersion 30
28
+ compileSdkVersion 31
29
29
30
30
defaultConfig {
31
+ multiDexEnabled true
31
32
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
32
33
applicationId " com.hustlecreatives.flood_mobile"
33
- minSdkVersion 16
34
- targetSdkVersion 30
34
+ minSdkVersion 21
35
+ targetSdkVersion 31
35
36
versionCode flutterVersionCode. toInteger()
36
37
versionName flutterVersionName
37
38
}
Original file line number Diff line number Diff line change 27
27
android : resource =" @xml/provider_paths" />
28
28
</provider >
29
29
<activity
30
+ android : exported =" true"
30
31
android : name =" .MainActivity"
31
32
android : launchMode =" singleTop"
32
33
android : theme =" @style/LaunchTheme"
Original file line number Diff line number Diff line change 1
1
buildscript {
2
+ ext. kotlin_version = ' 1.6.10'
2
3
repositories {
3
4
google()
4
5
jcenter()
5
6
}
6
7
7
8
dependencies {
8
9
classpath ' com.android.tools.build:gradle:4.1.0'
10
+ classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
9
11
}
10
12
}
11
13
Original file line number Diff line number Diff line change 1
- # Fri Jun 23 08:50:38 CEST 2017
2
1
distributionBase =GRADLE_USER_HOME
3
2
distributionPath =wrapper/dists
4
3
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -378,7 +378,7 @@ class _TorrentTileState extends State<TorrentTile> {
378
378
mainAxisAlignment: MainAxisAlignment .spaceBetween,
379
379
children: [
380
380
Text ('Size' ),
381
- Text (widget.model.directory ),
381
+ Text (filesize ( widget.model.sizeBytes. toInt ()) ),
382
382
],
383
383
),
384
384
SizedBox (
You can’t perform that action at this time.
0 commit comments