diff --git a/android/app/build.gradle b/android/app/build.gradle index fbe70d6d4..ff833ead4 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -81,8 +81,8 @@ android { applicationId packageName minSdkVersion 21 targetSdkVersion 34 - versionCode 10009430 - versionName "0.9.43 Vital" + versionCode 10009434 + versionName "0.9.44 X" ndk { abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64' } } compileOptions { @@ -137,6 +137,5 @@ dependencies { implementation("androidx.browser:browser:1.7.0") implementation("com.waynejo:androidndkgif:0.3.3") implementation("androidx.preference:preference-ktx:1.2.1") - implementation("com.google.android.play:core:1.10.3") implementation("androidx.documentfile:documentfile:1.0.1") } diff --git a/android/app/src/main/kotlin/com/perol/pixez/PixEz.kt b/android/app/src/main/kotlin/com/perol/pixez/PixEz.kt index 0ac5c66be..067bb0b04 100644 --- a/android/app/src/main/kotlin/com/perol/pixez/PixEz.kt +++ b/android/app/src/main/kotlin/com/perol/pixez/PixEz.kt @@ -18,16 +18,11 @@ package com.perol.pixez import coil.ImageLoader import coil.ImageLoaderFactory -import com.google.android.play.core.missingsplits.MissingSplitsManagerFactory import io.flutter.app.FlutterApplication class PixEz : FlutterApplication(), ImageLoaderFactory { override fun onCreate() { - if (MissingSplitsManagerFactory.create(this).disableAppIfMissingRequiredSplits()) { - // Skip app initialization. - return - } super.onCreate() CrashHandler.instance.init(applicationContext) } diff --git a/lib/page/novel/viewer/novel_viewer.dart b/lib/page/novel/viewer/novel_viewer.dart index 8fc043170..4304c86ba 100644 --- a/lib/page/novel/viewer/novel_viewer.dart +++ b/lib/page/novel/viewer/novel_viewer.dart @@ -206,24 +206,21 @@ class _NovelViewerPageState extends State { ], ), extendBodyBehindAppBar: true, - body: Scrollbar( - controller: _controller, - child: ListView.builder( - padding: EdgeInsets.all(0), - controller: _controller, - itemBuilder: (context, index) { - if (index == 0) { - return _buildHeader(context); - } else if (index == _novelStore.spans.length + 1) { - return Container( - height: 10 + MediaQuery.of(context).padding.bottom); - } else { - return _buildSpanText( - context, index - 1, _novelStore.spans); - } - }, - itemCount: 2 + _novelStore.spans.length), - ), + body: ListView.builder( + padding: EdgeInsets.all(0), + controller: _controller, + itemBuilder: (context, index) { + if (index == 0) { + return _buildHeader(context); + } else if (index == _novelStore.spans.length + 1) { + return Container( + height: 10 + MediaQuery.of(context).padding.bottom); + } else { + return _buildSpanText( + context, index - 1, _novelStore.spans); + } + }, + itemCount: 2 + _novelStore.spans.length), ), ); } diff --git a/lib/page/search/result_illust_list.dart b/lib/page/search/result_illust_list.dart index f0c3295cb..cdeb61d19 100644 --- a/lib/page/search/result_illust_list.dart +++ b/lib/page/search/result_illust_list.dart @@ -168,7 +168,6 @@ class _ResultIllustListState extends State { ), onTap: () { _buildShowBottomSheet(context); - // _showMaterialBottom(); }), ], ),