标签 Android 下的文章
- 首页
- Android
Android:同时安装 release 和 debug 版 apk 包
在 Android 开发过程中,我们往往需要安装 debug 版的 apk 来进行真机测试,而如果已经安装了签名过的 release 版是无法安装 debug 版的,开发测试非常不方便。这里提供一个方案可以实现一个 app 同时安装 debug 和 release 版。解决方案首先在 build.gradle(app) 中配置如下buildTypes { release { ...
RD Client 微软远程桌面 android 客户端全面屏手机显示异常、鼠标偏移问题解决
RD Client 微软远程桌面在部分全面屏、刘海屏、水滴屏等手机显示可能会有如下问题:显示不全、全任务栏看不到、鼠标指针位置偏移,明明是点这里结果点到了旁边。解决方案出现这个问题很可能你将手机自动旋转给锁定了,解决办法是开启 android 系统的自动旋转,然后打开 RD Client app 进入主页,旋转手机到横屏状态使 app 也变为横屏显示,这时再去侧边栏设置分辨率或点击之的连接项...
Android App 自动更新升级组件 Library
AutoUpdateProjectAndroid App 自动升级内部更新组件库,提供 12 种更新的样式 适配到 Android 9.0 支持自定义UI 断点续传。项目地址https://github.com/MZCretin/AutoUpdateProject功能特点最大亮点,提供12种更新的样式,总有一个是你喜欢的类型!支持三种设置更新信息的方式,您可以直接传model,传json数据...
Android P(9.0):Cleartext http traffic to xxx not permitted
Android P (9.0) 及以上版本访问网络时出现:Cleartext http traffic to xxx not permitted简单介绍原因:为保证用户数据和设备的安全,Google针对下一代 Android 系统(Android P) 的应用程序,将要求默认使用加密连接,这意味着 Android P 将禁止 App 使用所有未加密的连接,因此运行 Android P 系统的...
Android 警告:App is not indexable by Google Search
在AndroidManifest.xml文件中,整个<Application>警告:Warning: App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter. See issue explanation for mo...
Android 报错:ClassNotFoundException:android.support.constraint.ConstraintLayout
错误提示如图解决方案引入了 Androidx 后布局文件需要修改,注意上图中的 Binary XML,说明是布局文件有问题。<android.support.constraint.ConstraintLayout> 改为 <androidx.constraintlayout.widget.ConstraintLayout>
Android 报错:Duplicate class android.support.v4
最近将 Android Studio 升级到3.5版本后打开以前的项目并升级了 Gradle 后报错如下Duplicate class android.support.v4.accessibilityservice.AccessibilityServiceInfoCompat found in modules classes.jar (com.android.support:support-...