diff options
Diffstat (limited to 'android/avd/util.h')
-rw-r--r-- | android/avd/util.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/android/avd/util.h b/android/avd/util.h index 27f8f28..877d5aa 100644 --- a/android/avd/util.h +++ b/android/avd/util.h @@ -48,6 +48,16 @@ char* path_getAvdTargetArch( const char* avdName ); */ char* path_getBuildTargetArch( const char* androidOut ); +/* Retrieves a string corresponding to the target CPU ABI + * when in the Android platform tree. The only way to do that + * properly for now is to look at $OUT/system/build.prop: + * + * ro.product.cpu-abi=<abi> + * + * Where <abi> can be 'armeabi', 'armeabi-v7a' or 'x86'. + */ +char* path_getBuildTargetAbi( const char* androidOut ); + /* Retrieve the target API level when in the Android platform tree. * This can be a very large number like 1000 if the value cannot * be extracted from the appropriate file |