WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit a01b601

Browse files
committed
flutter 3.35.5
1 parent 9ee5651 commit a01b601

File tree

10 files changed

+255
-267
lines changed

10 files changed

+255
-267
lines changed

.fvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"flutter": "3.32.8"
2+
"flutter": "stable"
33
}

android/app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ val packageName = if (dartEnvironmentVariables["IS_GOOGLEPLAY"] as Boolean) {
6363

6464
android {
6565
namespace = "com.perol.pixez"
66-
compileSdk = flutter.compileSdkVersion
66+
compileSdk = 36
6767
ndkVersion = "27.0.12077973"
6868

6969
compileOptions {
@@ -78,7 +78,7 @@ android {
7878

7979
defaultConfig {
8080
applicationId = packageName
81-
minSdk = 21
81+
minSdk = flutter.minSdkVersion
8282
targetSdk = 35
8383
versionCode = 10009750
8484
versionName = "0.9.75 ev"
@@ -129,4 +129,4 @@ dependencies {
129129
implementation("io.github.waynejo:androidndkgif:1.0.1")
130130
implementation("androidx.preference:preference-ktx:1.2.1")
131131
implementation("androidx.documentfile:documentfile:1.0.1")
132-
}
132+
}

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@
154154
<meta-data
155155
android:name="flutterEmbedding"
156156
android:value="2" />
157-
<meta-data
157+
<!-- <meta-data
158158
android:name="io.flutter.embedding.android.EnableImpeller"
159-
android:value="false" />
159+
android:value="false" /> -->
160160
</application>
161161

162162
</manifest>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Feb 12 16:17:44 CST 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

android/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pluginManagement {
3333

3434
plugins {
3535
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
36-
id("com.android.application") version "8.7.0" apply false
36+
id("com.android.application") version "8.13.0" apply false
3737
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
3838
}
3939

l10n.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
synthetic-package: false
21
arb-dir: lib/l10n
32
template-arb-file: intl_en_US.arb
43
output-localization-file: app_localizations.dart

lib/network/api_client.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class ApiClient {
204204
options: options
205205
.copyWith(
206206
policy: force ? CachePolicy.refresh : null,
207-
maxStale: Nullable(Duration(minutes: 2)))
207+
maxStale: Duration(minutes: 2))
208208
.toOptions());
209209
}
210210

@@ -330,7 +330,7 @@ class ApiClient {
330330
options: options
331331
.copyWith(
332332
policy: force ? CachePolicy.refresh : null,
333-
maxStale: Nullable(Duration(minutes: 2)))
333+
maxStale: Duration(minutes: 2))
334334
.toOptions());
335335
}
336336

@@ -355,7 +355,7 @@ class ApiClient {
355355
options: options
356356
.copyWith(
357357
policy: force ? CachePolicy.refresh : null,
358-
maxStale: Nullable(Duration(hours: 1)))
358+
maxStale: Duration(hours: 1))
359359
.toOptions(),
360360
);
361361
}
@@ -366,7 +366,7 @@ class ApiClient {
366366
options: options
367367
.copyWith(
368368
policy: force ? CachePolicy.refresh : null,
369-
maxStale: Nullable(Duration(hours: 1)))
369+
maxStale: Duration(hours: 1))
370370
.toOptions(),
371371
);
372372
}
@@ -435,7 +435,7 @@ class ApiClient {
435435
options: options
436436
.copyWith(
437437
policy: force ? CachePolicy.refresh : null,
438-
maxStale: Nullable(Duration(days: 1)))
438+
maxStale: Duration(days: 1))
439439
.toOptions(),
440440
queryParameters: notNullMap({"illust_id": illust_id}));
441441

@@ -466,7 +466,7 @@ class ApiClient {
466466
options: options
467467
.copyWith(
468468
policy: force ? CachePolicy.refresh : null,
469-
maxStale: Nullable(Duration(hours: 23)))
469+
maxStale: Duration(hours: 23))
470470
.toOptions(),
471471
);
472472
}
@@ -477,7 +477,7 @@ class ApiClient {
477477
options: options
478478
.copyWith(
479479
policy: force ? CachePolicy.refresh : null,
480-
maxStale: Nullable(Duration(minutes: 2)))
480+
maxStale: Duration(minutes: 2))
481481
.toOptions());
482482
}
483483

@@ -487,7 +487,7 @@ class ApiClient {
487487
options: options
488488
.copyWith(
489489
policy: force ? CachePolicy.refresh : null,
490-
maxStale: Nullable(Duration(minutes: 2)))
490+
maxStale: Duration(minutes: 2))
491491
.toOptions());
492492
}
493493

lib/page/history/history_store.freezed.dart

Lines changed: 3 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)