logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Could not install Gradle distribution from ‘https://services.gradle.org/distributions/gradle-6.5-bin

Could not install Gradle distribution from 'https://services.gradle.org/distributions/gradle-6.5-bin

文章图片
#android#gradle
Android类似钉钉类的APP 实现禁止用户虚拟定位

参考:https://blog.csdn.net/mawei7510/article/details/80250416在应用开发中,如果有签到打卡之类的功能,我们肯定需要在项目中禁止用户开启虚拟定位,导致在***米之外的距离模拟定位然后进行了打卡操作!(一)首先:获取用户手机是否打开了 “允许模拟位置” 选项?其实很简单,这些设置项,基本都是写在数据库里,所以只要看看setting的源码(或者查看

Android问题adb cannot run as root in production builds解决

1 验证手机是否已经root过win+R打开cmd命令,输入adb shellsu然后 $ 变为 # 即 表示root 成功2 手机安装adbd-insecure.apk下载链接:https://pan.baidu.com/s/10STbW4gLho7lDEYsGY5f0g提取码:nlv7使用abd 命令安装 adb installadbd-insecure.apk3,设置打开下载的应用,将Ena

#bug
Plugin [id: ‘com.android.application‘, version: ‘8.1.2‘, apply: false] was not found in any of the f

Plugin [id: 'com.android.application', version: '8.1.2', apply: false] was not found in any of the following sources:

文章图片
#android#前端
adb设置屏幕亮度

1. 获取亮度是否为自动调节adb shell settings get system screen_brightness_mode# 输出:0(未开启), 1(已开启)1232. 修改设备亮度为自动调节/ 取消自动调节# 关闭adb shell settings put system screen_brightness_mode 0# 开启adb shell settings put syste

#android#html5#ios
android.app.RemoteServiceException: Bad notification for startForeground

运行在模拟器上没有问题,运行在真机上就会报错,是安卓版本问题,使用Notificatio通知再Android8.0以上的的通知要设置渠道,否则就无法显示。所以在MyService中onCreatet如下代码:@Overridepublic void onCreate() {super.onCreate();String ID = "com.example.service1";//这里的id里面输入

到底了