加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
AndroidManifest.xml 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
袁杰 提交于 2021-12-25 12:53 . :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.bignerdranch.android.myapptestfinal">
<application
android:allowBackup="true"
android:icon="@mipmap/logo_first"
android:label="百宝箱"
android:roundIcon="@mipmap/logo_first"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<!-- 设置默认启动页 将闪屏页作为默认启动页 不保留栈中避免返回再现 -->
<activity android:name=".SplashActivity"
android:excludeFromRecents="true"
android:noHistory="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- 注册Activity -->
<activity android:name=".TwoActivity"/>
<activity android:name=".Notepad.NotepadActivity" />
<activity android:name=".Notepad.RecordActivity" />
<activity android:name=".RegisertActivity" />
<activity android:name=".MainActivity" />
</application>
</manifest>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化