21 lines
829 B
XML
21 lines
829 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
|
package="c0m.andr0id.settingS"
|
|
coreApp="true"
|
|
android:sharedUserId="android.uid.system">
|
|
<application>
|
|
<activity
|
|
android:name=".wifi.WifiPickerActivity"
|
|
android:exported="true">
|
|
<intent-filter android:priority="1">
|
|
<action android:name="android.net.wifi.PICK_WIFI_NETWORK" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
<meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
|
|
android:value="true" />
|
|
</activity>
|
|
</application>
|
|
</manifest>
|
|
|