Loading res/values/strings.xml +1 −1 Original line number Diff line number Diff line Loading @@ -11313,7 +11313,7 @@ <!-- Title for default disabled app compat changes category [CHAR LIMIT=50] --> <string name="platform_compat_default_disabled_title">Default disabled changes</string> <!-- Title for target SDK gated app compat changes category (do not translate 'targetSdkVersion') [CHAR LIMIT=50] --> <string name="platform_compat_target_sdk_title">Enabled for targetSdkVersion > <xliff:g id="number" example="29">%d</xliff:g></string> <string name="platform_compat_target_sdk_title">Enabled for targetSdkVersion >= <xliff:g id="number" example="29">%d</xliff:g></string> <!-- Title for the dialog shown when no debuggable apps are available [CHAR LIMIT=30] --> <string name="platform_compat_dialog_title_no_apps">No apps available</string> <!-- Explanatory text shown when no debuggable apps are available [CHAR LIMIT=NONE] --> src/com/android/settings/development/compat/PlatformCompatDashboard.java +1 −1 Original line number Diff line number Diff line Loading @@ -149,7 +149,7 @@ public class PlatformCompatDashboard extends DashboardFragment { final List<CompatibilityChangeInfo> disabledChanges = new ArrayList<>(); final Map<Integer, List<CompatibilityChangeInfo>> targetSdkChanges = new TreeMap<>(); for (CompatibilityChangeInfo change : mChanges) { if (change.getEnableSinceTargetSdk() != 0) { if (change.getEnableSinceTargetSdk() > 0) { List<CompatibilityChangeInfo> sdkChanges; if (!targetSdkChanges.containsKey(change.getEnableSinceTargetSdk())) { sdkChanges = new ArrayList<>(); Loading Loading
res/values/strings.xml +1 −1 Original line number Diff line number Diff line Loading @@ -11313,7 +11313,7 @@ <!-- Title for default disabled app compat changes category [CHAR LIMIT=50] --> <string name="platform_compat_default_disabled_title">Default disabled changes</string> <!-- Title for target SDK gated app compat changes category (do not translate 'targetSdkVersion') [CHAR LIMIT=50] --> <string name="platform_compat_target_sdk_title">Enabled for targetSdkVersion > <xliff:g id="number" example="29">%d</xliff:g></string> <string name="platform_compat_target_sdk_title">Enabled for targetSdkVersion >= <xliff:g id="number" example="29">%d</xliff:g></string> <!-- Title for the dialog shown when no debuggable apps are available [CHAR LIMIT=30] --> <string name="platform_compat_dialog_title_no_apps">No apps available</string> <!-- Explanatory text shown when no debuggable apps are available [CHAR LIMIT=NONE] -->
src/com/android/settings/development/compat/PlatformCompatDashboard.java +1 −1 Original line number Diff line number Diff line Loading @@ -149,7 +149,7 @@ public class PlatformCompatDashboard extends DashboardFragment { final List<CompatibilityChangeInfo> disabledChanges = new ArrayList<>(); final Map<Integer, List<CompatibilityChangeInfo>> targetSdkChanges = new TreeMap<>(); for (CompatibilityChangeInfo change : mChanges) { if (change.getEnableSinceTargetSdk() != 0) { if (change.getEnableSinceTargetSdk() > 0) { List<CompatibilityChangeInfo> sdkChanges; if (!targetSdkChanges.containsKey(change.getEnableSinceTargetSdk())) { sdkChanges = new ArrayList<>(); Loading