logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Android Studio项目升级报错:Inconsistent JVM-target compatibility detected for tasks...

Android Studio项目升级报错:Inconsistent JVM-target compatibility detected for tasks ‘compileDebugJavaWithJavac’ (1.8) and ‘compileDebugKotlin’ (17).

文章图片
#android studio#jvm#android
Android Studio项目升级报错:Namespace not specified

Android Studio项目升级报错:Namespace not specified

文章图片
#android studio#bug#intellij idea
Android子线程可以更新UI

Android子线程可以更新UI

文章图片
#android#ui
创建型模式(一):工厂方法模式(含简单工厂模式)

工厂方法(FactoryMethod)模式的定义:定义一个创建产品对象的工厂接口,将产品对象的实际创建工作推迟到具体子工厂类当中。这满足创建型模式中所要求的“创建与使用相分离”的特点。我们把被创建的对象称为“产品”,把创建产品的对象称为“工厂”。如果要创建的产品不多,只要一个工厂类就可以完成,这种模式叫“简单工厂模式”,它不属于 GoF 的 23 种经典[设计模式],它的缺点是增加新产品时会违背“

文章图片
#简单工厂模式#工厂方法模式
反编译android APK文件之apktool

打开apktool官网https://ibotpeaches.github.io/Apktool/,切换到Install页面,安装apktool(本文以windows平台为例)。步骤1:将鼠标放在wrapper script上右击,选择连接另存为…,将apktool.bat文件保存到本地,记得名字要改成apktool.bat。步骤2:点击find newest here跳转到apktool....

到底了