27 lines
1002 B
XML
27 lines
1002 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.royna.smartcharge"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<application
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.SubSettingsBase">
|
|
<activity
|
|
android:name=".SmartChargeActivity"
|
|
android:exported="true"
|
|
android:label="@string/smart_charge_title">
|
|
<intent-filter>
|
|
<action android:name="com.android.settings.action.IA_SETTINGS" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.ia.battery" />
|
|
<meta-data
|
|
android:name="com.android.settings.summary"
|
|
android:resource="@string/smart_charge_enable_title"/>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|