Package Details: universal-android-debloater 1.1.0-1

Git Clone URL: https://aur.archlinux.org/universal-android-debloater.git (read-only, click to copy)
Package Base: universal-android-debloater
Description: Cross-platform GUI written in Rust using ADB to debloat non-rooted Android devices
Upstream URL: https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation
Licenses: GPL-3.0-or-later
Conflicts: universal-android-debloater-opengl
Submitter: yochananmarqos
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 11
Popularity: 0.087878
First Submitted: 2021-10-13 16:22 (UTC)
Last Updated: 2024-09-15 19:28 (UTC)

Latest Comments

1 2 3 Next › Last »

rafnov commented on 2024-10-13 09:07 (UTC)

Unfotunately, it does NOT compile on me: https://bpa.st/73QQ How to fix? Tried -bin - does not run at all.

fam007e commented on 2024-09-16 15:08 (UTC)

Recent install showed these warnings while cargo build via yay aur-helper:

...
   Compiling iced v0.12.1
warning: unused import: `crate::core::utils::NAME`
 --> src/core/update.rs:1:5
  |
1 | use crate::core::utils::NAME;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

warning: field `assets` is never read
  --> src/core/update.rs:18:9
   |
16 | pub struct Release {
   |            ------- field in this struct
17 |     pub tag_name: String,
18 |     pub assets: Vec<ReleaseAsset>,
   |         ^^^^^^
   |
   = note: `Release` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
   = note: `#[warn(dead_code)]` on by default

warning: fields `name` and `download_url` are never read
  --> src/core/update.rs:23:9
   |
22 | pub struct ReleaseAsset {
   |            ------------ fields in this struct
23 |     pub name: String,
   |         ^^^^
24 |     #[serde(rename = "browser_download_url")]
25 |     pub download_url: String,
   |         ^^^^^^^^^^^^
   |
   = note: `ReleaseAsset` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis

warning: variant `Updating` is never constructed
  --> src/core/update.rs:36:5
   |
35 | pub enum SelfUpdateStatus {
   |          ---------------- variant in this enum
36 |     Updating,
   |     ^^^^^^^^
   |
   = note: `SelfUpdateStatus` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis

warning: variant `UpdateFailed` is never constructed
  --> src/gui/views/list.rs:92:5
   |
72 | pub enum Message {
   |          ------- variant in this enum
...
92 |     UpdateFailed,
   |     ^^^^^^^^^^^^
   |
   = note: `Message` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis

warning: `uad-ng` (bin "uad-ng") generated 5 warnings (run `cargo fix --bin "uad-ng"` to apply 1 suggestion)
    Finished `release` profile [optimized] target(s) in 4m 54s
...

yochananmarqos commented on 2024-08-06 21:41 (UTC) (edited on 2024-08-06 21:42 (UTC) by yochananmarqos)

@rafnov: Please create an upstream issue if there isn't an existing one.

Also, please use proper formatting if you past terminal output here:

```

paste output here

```

rafnov commented on 2024-08-06 21:36 (UTC) (edited on 2024-08-07 07:22 (UTC) by rafnov)

It won't run with message:

uad-ng 
2024-08-06 23:33:42 WARN  [/tmp/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-0.19.3/src/vulkan/instance.rs:291] Unable to find extension: VK_KHR_surface
2024-08-06 23:33:42 WARN  [/tmp/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-0.19.3/src/vulkan/instance.rs:291] Unable to find extension: VK_KHR_xlib_surface
2024-08-06 23:33:42 WARN  [/tmp/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-0.19.3/src/vulkan/instance.rs:291] Unable to find extension: VK_KHR_xcb_surface
2024-08-06 23:33:42 WARN  [/tmp/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-0.19.3/src/vulkan/instance.rs:291] Unable to find extension: VK_KHR_wayland_surface
2024-08-06 23:33:42 WARN  [/tmp/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-0.19.3/src/vulkan/instance.rs:291] Unable to find extension: VK_EXT_swapchain_colorspace
2024-08-06 23:33:42 WARN  [/tmp/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-0.19.3/src/vulkan/instance.rs:291] Unable to find extension: VK_KHR_get_physical_device_properties2
thread 'main' panicked at /tmp/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-core-0.19.3/src/instance.rs:521:39:
called `Option::unwrap()` on a `None` value

Any idea why?

yochananmarqos commented on 2024-05-09 15:14 (UTC)

@fam007e: I just built it fine in a clean chroot.

fam007e commented on 2024-05-09 10:13 (UTC)

I am facing problems building the UAD package. These are the excerpts of warnings and errors:

warning: `/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/.cargo/config` is deprecated in favor of `config.toml`
note: if you need to support cargo 1.38 or earlier, you can symlink `config` to `config.toml`
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
warning: `/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/.cargo/config` is deprecated in favor of `config.toml`
note: if you need to support cargo 1.38 or earlier, you can symlink `config` to `config.toml`
   Compiling proc-macro2 v1.0.79
   Compiling uad-ng v1.0.3 (/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3)
warning: variant `Updating` is never constructed
  --> src/core/update.rs:34:5
   |
33 | pub enum SelfUpdateStatus {
   |          ---------------- variant in this enum
34 |     Updating,
   |     ^^^^^^^^
   |
   = note: `SelfUpdateStatus` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
   = note: `#[warn(dead_code)]` on by default

warning: variant `UpdateFailed` is never constructed
  --> src/gui/views/list.rs:82:5
   |
62 | pub enum Message {
   |          ------- variant in this enum
...
82 |     UpdateFailed,
   |     ^^^^^^^^^^^^
   |
   = note: `Message` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis

warning: `uad-ng` (bin "uad-ng") generated 2 warnings
error: could not compile `uad-ng` (bin "uad-ng"); 2 warnings emitted

Caused by:
  process didn't exit successfully: `rustc --crate-name uad_ng --edition=2021 src/main.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=106 --crate-type bin --emit=dep-info,link -C opt-level=s -C lto --cfg 'feature="no-self-update"' --cfg 'feature="wgpu"' -C metadata=120a024ddea99556 -C extra-filename=-120a024ddea99556 --out-dir /home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps -C linker=clang -C strip=symbols -L dependency=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps --extern chrono=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libchrono-a8f7c58f3ef8c01e.rlib --extern dark_light=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libdark_light-ebc9be37d30086f7.rlib --extern dirs=/home
/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libdirs-a289e7231f9f6f6b.rlib --extern fern=/home/fam007e/.cache/y
ay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libfern-1a541868ebbb9115.rlib --extern iced=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libiced-992ea16ed1cfdf70.rlib --extern log=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/liblog-01a1dea593386432.rlib --extern regex=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libregex-439c3d973536d72e.rlib --extern retry=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libretry-27e2ad22711902d0.rlib --extern serde=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libserde-1b4a2ebe3d6b2149.rlib --extern serde_json=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libserde_json-f22c546d203d5a68.rlib --extern static_init=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libstatic_init-e6739e115745f5e7.rlib --extern toml=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libtoml-7e04318aa9ac57f7.rlib --extern ureq=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/deps/libureq-3c9fa6995f008e73.rlib -Cforce-frame-pointers=yes -C debuginfo=2 --remap-path-prefix=/home/fam007e/.cache/yay/universal-android-debloater/src=/usr/src/debug/universal-android-debloater -L native=/home/fam007e/.cache/yay/universal-android-debloater/src/universal-android-debloater-next-generation-1.0.3/target/release/build/ring-b827c9de0c5a4ffe/out` (signal: 9, SIGKILL: kill)
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: universal-android-debloater-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
universal-android-debloater - exit status 4

yochananmarqos commented on 2024-04-29 22:35 (UTC)

@rafnov: Since the issue has nothing to do with this package, please use support channels like the forum or IRC.

rafnov commented on 2024-04-29 21:08 (UTC)

I have a serious problem building this: https://0x0.st/XHRn.png How do I override oom? I've already created 5 GB swapfiles but it's still not enough...?

yochananmarqos commented on 2024-01-27 21:45 (UTC)

@alex8897: Well, then create create a post on the Manjaro forum.

alex8897 commented on 2024-01-27 21:40 (UTC)

Actually I'm a manjaro user. I think minimal iso is missing something. I sincerely appreciate your attention.