Changes between Version 19 and Version 20 of AndroidBuildApp
- Timestamp:
- Jan 12, 2015, 10:45:18 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AndroidBuildApp
v19 v20 82 82 }}} 83 83 84 You should use appropriate plan classes so that PIE app versions 85 are sent only to Android 4.1 or later systems. 84 You should use plan classes so that 85 * PIE app versions are sent only to Android 4.1 or later devices. 86 * non-PIE app versions are sent only to pre-5.0 devices. 87 86 88 For example (using [AppPlanSpec XML plan class specification]): 87 89 {{{ … … 89 91 <name>android_arm_pie</name> 90 92 <min_android_version>40100</min_android_version> 93 </plan_class> 94 95 <plan_class> 96 <name>android_arm_non_pie</name> 97 <max_android_version>49999</max_android_version> 91 98 </plan_class> 92 99 }}} … … 113 120 -llog refers to the library required to use Logcat from native code. 114 121 Logcat is used for debugging purposes and is not required for the app's functionality. 122