Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 76 additions & 26 deletions app-catalog/samples/foundation/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />

<!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle -->
<uses-permission android:name="android.permission.INTERNET" />
Expand Down Expand Up @@ -226,6 +228,80 @@
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep4_1"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep4_1second"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep4_2"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep4_3"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep4_3second"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" >
<intent-filter>
<!--<action android:name="android.intent.action.VIEW"/>-->
<action android:name="test_action"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>

<activity android:name=".prejob.extDemo.ep4_5"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep4_6"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep5_1"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep5_2"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep5_4"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep5_5"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep5_6"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep5_7"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep6_1"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep6_2"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep6_3"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity android:name=".prejob.extDemo.ep5_10"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight" />

<activity
android:name=".job.DbEntryActivity"
android:exported="true"
Expand Down Expand Up @@ -262,32 +338,6 @@
<!-- <action android:name="com.android.brocasttest.MY_BROADCAST"/>-->
<!-- </intent-filter>-->
<!-- </receiver>-->


<!-- <activity-->
<!-- android:name=".ep5_9"-->
<!-- android:exported="true"-->
<!-- android:theme="@style/Theme.Translucent"-->
<!-- tools:ignore="MissingClass">-->
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->

<!-- <category android:name="android.intent.category.LAUNCHER" />-->
<!-- </intent-filter>-->
<!-- </activity>-->
<!-- ep4_1注释-->
<!-- <activity android:name=".ep4_1second"></activity>-->


<!-- ep4_3,ep4_4注释 -->
<!-- <activity android:name=".ep4_3second"-->
<!-- android:exported="true">-->
<!-- <intent-filter>-->
<!--&lt;!&ndash; <action android:name="android.intent.action.VIEW"/>&ndash;&gt;-->
<!-- <action android:name="test_action"/>-->
<!-- <category android:name="android.intent.category.DEFAULT"/>-->
<!-- </intent-filter>-->
<!-- </activity>-->
</application>

</manifest>

This file was deleted.

Loading
Loading