diff options
| author | Dianne Hackborn <hackbod@google.com> | 2010-04-26 18:51:31 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-04-26 18:51:31 -0700 |
| commit | 2e4b98dcd88f14fdb35e46236ec916493c570f28 (patch) | |
| tree | 06a631100ff7556e5e5a737848cf9f620db70280 | |
| parent | cd24dae9ca6550b24333f889935e1de068759ce5 (diff) | |
| parent | 94c567e1e344d49168603f5a0560215a4ce735e6 (diff) | |
| download | frameworks_base-2e4b98dcd88f14fdb35e46236ec916493c570f28.zip frameworks_base-2e4b98dcd88f14fdb35e46236ec916493c570f28.tar.gz frameworks_base-2e4b98dcd88f14fdb35e46236ec916493c570f28.tar.bz2 | |
Merge "Whoops a little more on issue #2631417: Expose FLAG_EXTERNAL_STORAGE" into froyo
| -rw-r--r-- | api/8.xml | 2 | ||||
| -rw-r--r-- | api/current.xml | 2 | ||||
| -rw-r--r-- | core/java/android/content/pm/ApplicationInfo.java | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -42706,7 +42706,7 @@ type="int" transient="false" volatile="false" - value="524288" + value="262144" static="true" final="true" deprecated="not deprecated" diff --git a/api/current.xml b/api/current.xml index ff4afc7..e757db2 100644 --- a/api/current.xml +++ b/api/current.xml @@ -42706,7 +42706,7 @@ type="int" transient="false" volatile="false" - value="524288" + value="262144" static="true" final="true" deprecated="not deprecated" diff --git a/core/java/android/content/pm/ApplicationInfo.java b/core/java/android/content/pm/ApplicationInfo.java index 29b9d4c..1577f9e 100644 --- a/core/java/android/content/pm/ApplicationInfo.java +++ b/core/java/android/content/pm/ApplicationInfo.java @@ -259,7 +259,7 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { * the application has been uninstalled (its .apk is no longer available) * but its persistent data is not removed. */ - public static final int FLAG_EXTERNAL_STORAGE = 1<<19; + public static final int FLAG_EXTERNAL_STORAGE = 1<<18; /** * Value for {@link #flags}: Set to true if the application has been |
