10 2022 档案
反编译安卓aar文件
摘要:下载地址:https://varaneckas.com/jad/下载最新的符合自己系统的文件,解压之后包含jad.exe 和 Readme.txt文件将要反编译的aar包改成zip然后解压一下,再将解压后里面的classes.jar改成图中一样的zip,再解压会得到一个新的com目录到这里再从cmd
阅读全文
Android Studio报错:Error:Execution failed for task':app:mergeDebugResources'
摘要:Build失败,原因是我添加的图片不符合Android Studio的审核要求,添加两行代码,禁用审核在app目录下的build.gradle中的android {...}增加配置android {.......aaptOptions.cruncherEnabled = falseaaptOptio
阅读全文
.NET MAUI Blazor应用中使用资源文件/图像
摘要:官方文档:https://learn.microsoft.com/zh-cn/aspnet/core/blazor/hybrid/static-files?view=aspnetcore-6.0在 .NET MAUI 应用中,使用 MauiAsset 生成操作的原始资源和 .NET MAUI fil
阅读全文
Android编译报错:Cannot resolve external dependency com.android.tools.build:gradle:7.3.0 because no repositories are defined
摘要:修改根目录的build.gradle 增加 repositories 配置,然后再File>Sync Project with Gradle Files,再执行Build>Rebuild Project buildscript { ext { agp_version = '7.3.0' } repo
阅读全文
settings.gradle配置,解决Plugin [id: 'com.android.application', version: '7.3.0', apply: false] was not found in any of the following sources
摘要:Android Studio版本:android-studio-2021.3.1.16-windows.exe报错:Plugin [id: 'com.android.application', version: '7.3.0', apply: false] was not found in any
阅读全文
.net maui拨打电话
摘要:Platforms》Android》AndroidManifest.xml中加配置 <manifest xmlns:android="http://schemas.android.com/apk/res/android"> <application android:allowBackup="true
阅读全文