-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug Fix: OutOfMemoryError when unpacking large 7z archives #2
- Loading branch information
1 parent
473e6f0
commit db66326
Showing
41 changed files
with
221 additions
and
82 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.wirelessalien.zipxtract | ||
|
||
import android.app.Application | ||
import com.google.android.material.color.DynamicColors | ||
|
||
class App : Application() { | ||
override fun onCreate() { | ||
super.onCreate() | ||
// Apply dynamic color | ||
DynamicColors.applyToActivitiesIfAvailable(this) | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<background android:drawable="@drawable/ic_launcher_background" /> | ||
<foreground android:drawable="@drawable/ic_launcher_foreground" /> | ||
<background android:drawable="@mipmap/ic_launcher_background"/> | ||
<foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/> | ||
</adaptive-icon> |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,31 @@ | ||
<resources xmlns:tools="http://schemas.android.com/tools"> | ||
<!-- Base application theme. --> | ||
<style name="Theme.UnZip" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> | ||
<!-- Primary brand color. --> | ||
<item name="colorPrimary">@color/purple_200</item> | ||
<item name="colorPrimaryVariant">@color/purple_700</item> | ||
<item name="colorOnPrimary">@color/black</item> | ||
<!-- Secondary brand color. --> | ||
<item name="colorSecondary">@color/teal_200</item> | ||
<item name="colorSecondaryVariant">@color/teal_200</item> | ||
<item name="colorOnSecondary">@color/black</item> | ||
<!-- Status bar color. --> | ||
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item> | ||
<!-- Customize your theme here. --> | ||
|
||
<resources> | ||
<style name="AppTheme" parent="Theme.Material3.Dark.NoActionBar"> | ||
<item name="colorPrimary">@color/md_theme_dark_primary</item> | ||
<item name="colorOnPrimary">@color/md_theme_dark_onPrimary</item> | ||
<item name="colorPrimaryContainer">@color/md_theme_dark_primaryContainer</item> | ||
<item name="colorOnPrimaryContainer">@color/md_theme_dark_onPrimaryContainer</item> | ||
<item name="colorSecondary">@color/md_theme_dark_secondary</item> | ||
<item name="colorOnSecondary">@color/md_theme_dark_onSecondary</item> | ||
<item name="colorSecondaryContainer">@color/md_theme_dark_secondaryContainer</item> | ||
<item name="colorOnSecondaryContainer">@color/md_theme_dark_onSecondaryContainer</item> | ||
<item name="colorTertiary">@color/md_theme_dark_tertiary</item> | ||
<item name="colorOnTertiary">@color/md_theme_dark_onTertiary</item> | ||
<item name="colorTertiaryContainer">@color/md_theme_dark_tertiaryContainer</item> | ||
<item name="colorOnTertiaryContainer">@color/md_theme_dark_onTertiaryContainer</item> | ||
<item name="colorError">@color/md_theme_dark_error</item> | ||
<item name="colorErrorContainer">@color/md_theme_dark_errorContainer</item> | ||
<item name="colorOnError">@color/md_theme_dark_onError</item> | ||
<item name="colorOnErrorContainer">@color/md_theme_dark_onErrorContainer</item> | ||
<item name="android:colorBackground">@color/md_theme_dark_background</item> | ||
<item name="colorOnBackground">@color/md_theme_dark_onBackground</item> | ||
<item name="colorSurface">@color/md_theme_dark_surface</item> | ||
<item name="colorOnSurface">@color/md_theme_dark_onSurface</item> | ||
<item name="colorSurfaceVariant">@color/md_theme_dark_surfaceVariant</item> | ||
<item name="colorOnSurfaceVariant">@color/md_theme_dark_onSurfaceVariant</item> | ||
<item name="colorOutline">@color/md_theme_dark_outline</item> | ||
<item name="colorOnSurfaceInverse">@color/md_theme_dark_inverseOnSurface</item> | ||
<item name="colorSurfaceInverse">@color/md_theme_dark_inverseSurface</item> | ||
<item name="colorPrimaryInverse">@color/md_theme_dark_inversePrimary</item> | ||
</style> | ||
</resources> | ||
</resources> |
Oops, something went wrong.