Skip to content

Commit

Permalink
hzuapps#2 hzuapps#81 第2次实验
Browse files Browse the repository at this point in the history
  • Loading branch information
JieBro333 authored and JieBro333 committed Oct 6, 2020
1 parent a713647 commit 39a96fa
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions students/net1814080903220/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.hzuapps.androidlabs.Net1814080903220">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Net1814080903220PictureActivity"
android:label="@string/picture_name"></activity>

<activity
android:name=".Net1814080903220EditActivity"
android:label="@string/edit_name"></activity>
<activity android:name=".Net1814080903220MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

0 comments on commit 39a96fa

Please sign in to comment.