@ -22,7 +22,8 @@
android:theme="@style/Theme.GioApp"
android:theme="@style/Theme.GioApp"
android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize|keyboardHidden"
android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize|keyboardHidden"
android:windowSoftInputMode="adjustResize"
android:windowSoftInputMode="adjustResize"
android:launchMode="singleTask">
android:launchMode="singleTask"
android:exported="true">
<intent-filter >
<intent-filter >
<action android:name= "android.intent.action.MAIN" />
<action android:name= "android.intent.action.MAIN" />
<category android:name= "android.intent.category.LAUNCHER" />
<category android:name= "android.intent.category.LAUNCHER" />
@ -55,7 +56,8 @@
</intent-filter>
</intent-filter>
</activity>
</activity>
<service android:name= ".IPNService"
<service android:name= ".IPNService"
android:permission="android.permission.BIND_VPN_SERVICE">
android:permission="android.permission.BIND_VPN_SERVICE"
android:exported="false">
<intent-filter >
<intent-filter >
<action android:name= "android.net.VpnService" />
<action android:name= "android.net.VpnService" />
</intent-filter>
</intent-filter>
@ -64,7 +66,8 @@
android:name=".QuickToggleService"
android:name=".QuickToggleService"
android:icon="@drawable/ic_tile"
android:icon="@drawable/ic_tile"
android:label="@string/tile_name"
android:label="@string/tile_name"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
android:exported="true">
<intent-filter >
<intent-filter >
<action android:name= "android.service.quicksettings.action.QS_TILE" />
<action android:name= "android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</intent-filter>