summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2011-01-16 18:30:29 -0800
committerDianne Hackborn <hackbod@google.com>2011-01-16 18:43:04 -0800
commit805fd7ee0e5dc2939e85c84f78d9890a51982bc0 (patch)
treee2487cd3d7917fa6a126463e2cc5771295544627 /native
parentcf18c4788af740773c9b2720a1c4ed5f45454b8e (diff)
downloadframeworks_base-805fd7ee0e5dc2939e85c84f78d9890a51982bc0.zip
frameworks_base-805fd7ee0e5dc2939e85c84f78d9890a51982bc0.tar.gz
frameworks_base-805fd7ee0e5dc2939e85c84f78d9890a51982bc0.tar.bz2
Add API to get path to OBBs.
Also hide the bitmap thumbnail stuff, we can't support it in its current form. And fix some bugs with propagating paths to native code. Yikes! Change-Id: I13ab37ddbdba5c073489cba5eab035117d3c1574
Diffstat (limited to 'native')
-rw-r--r--native/include/android/native_activity.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/native/include/android/native_activity.h b/native/include/android/native_activity.h
index d89bc8b..a361846 100644
--- a/native/include/android/native_activity.h
+++ b/native/include/android/native_activity.h
@@ -91,6 +91,13 @@ typedef struct ANativeActivity {
* uses this to access binary assets bundled inside its own .apk file.
*/
AAssetManager* assetManager;
+
+ /**
+ * Available starting with Honeycomb: path to the directory containing
+ * the application's OBB files (if any). If the app doesn't have any
+ * OBB files, this directory may not exist.
+ */
+ const char* obbPath;
} ANativeActivity;
/**