dcb73e6d93
1. 快捷方式改为静态XML配置(仅beta渠道)
- 新增 res/xml/shortcuts.xml 定义静态快捷方式
- AndroidManifest.xml 添加 meta-data 引用
- MainActivity.setupShortcuts() 移除动态注册代码
2. 崩溃日志分享功能增强
- CrashHandleNotifyUtils: 新增 appAPKName/emailTo 参数
- ShareLogActivity: 添加邮件接收者(EXTRA_EMAIL)支持
- 邮件标题格式: {应用名} - 崩溃日志
- 邮件内容添加应用版本号和设备运行环境信息
- 通知按钮名称改为: 发送日志给开发组
3. 调用方适配
- App.java: 传入 APPBase 和 studio@winboll.cc
23 lines
660 B
XML
23 lines
660 B
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<!-- 拥有完全的网络访问权限 -->
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application
|
|
tools:replace="android:icon"
|
|
android:icon="@drawable/ic_winboll_beta">
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
<meta-data
|
|
android:name="android.app.shortcuts"
|
|
android:resource="@xml/shortcuts"/>
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest> |