Merge "Adapt to API constant changes" into klp-dev
This commit is contained in:
@@ -31,51 +31,51 @@
|
||||
|
||||
<service android:name="com.example.android.injector.MyInjectorService" >
|
||||
<intent-filter>
|
||||
<action android:name="com.android.settings.InjectedLocationSetting" />
|
||||
<action android:name="android.location.SettingInjectorService" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="com.android.settings.InjectedLocationSetting"
|
||||
android:name="android.location.SettingInjectorService"
|
||||
android:resource="@xml/my_injected_location_setting" />
|
||||
</service>
|
||||
|
||||
<service android:name="com.example.android.injector.DisabledInjectorService" >
|
||||
<intent-filter>
|
||||
<action android:name="com.android.settings.InjectedLocationSetting" />
|
||||
<action android:name="android.location.SettingInjectorService" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="com.android.settings.InjectedLocationSetting"
|
||||
android:name="android.location.SettingInjectorService"
|
||||
android:resource="@xml/disabled_injected_location_setting" />
|
||||
</service>
|
||||
|
||||
<service android:name="com.example.android.injector.FailingInjectorService" >
|
||||
<intent-filter>
|
||||
<action android:name="com.android.settings.InjectedLocationSetting" />
|
||||
<action android:name="android.location.SettingInjectorService" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="com.android.settings.InjectedLocationSetting"
|
||||
android:name="android.location.SettingInjectorService"
|
||||
android:resource="@xml/failing_injected_location_setting" />
|
||||
</service>
|
||||
|
||||
<service android:name="com.example.android.injector.SlowInjectorService" >
|
||||
<intent-filter>
|
||||
<action android:name="com.android.settings.InjectedLocationSetting" />
|
||||
<action android:name="android.location.SettingInjectorService" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="com.android.settings.InjectedLocationSetting"
|
||||
android:name="android.location.SettingInjectorService"
|
||||
android:resource="@xml/slow_injected_location_setting" />
|
||||
</service>
|
||||
|
||||
<service android:name="com.example.android.injector.UpdatingInjectorService" >
|
||||
<intent-filter>
|
||||
<action android:name="com.android.settings.InjectedLocationSetting" />
|
||||
<action android:name="android.location.SettingInjectorService" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="com.android.settings.InjectedLocationSetting"
|
||||
android:name="android.location.SettingInjectorService"
|
||||
android:resource="@xml/updating_injected_location_setting" />
|
||||
</service>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<injected-location-setting xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:label="@string/disabled_setting_label"
|
||||
android:title="@string/disabled_setting_label"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:settingsActivity="com.example.android.injector.MySettingActivity"
|
||||
/>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<injected-location-setting xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:label="@string/failing_setting_label"
|
||||
android:title="@string/failing_setting_label"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:settingsActivity="com.example.android.injector.MySettingActivity"
|
||||
/>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<injected-location-setting xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:label="@string/my_injected_setting_label"
|
||||
android:title="@string/my_injected_setting_label"
|
||||
android:icon="@drawable/ic_my_injected_setting"
|
||||
android:settingsActivity="com.example.android.injector.MySettingActivity"
|
||||
/>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<injected-location-setting xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:label="@string/slow_setting_label"
|
||||
android:title="@string/slow_setting_label"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:settingsActivity="com.example.android.injector.MySettingActivity"
|
||||
/>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<injected-location-setting xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:label="@string/updating_setting_label"
|
||||
android:title="@string/updating_setting_label"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:settingsActivity="com.example.android.injector.MySettingActivity"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user