Changes between Version 19 and Version 20 of AndroidBuildApp


Ignore:
Timestamp:
Jan 12, 2015, 10:45:18 AM (9 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidBuildApp

    v19 v20  
    8282}}}
    8383
    84 You should use appropriate plan classes so that PIE app versions
    85 are sent only to Android 4.1 or later systems.
     84You 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
    8688For example (using [AppPlanSpec XML plan class specification]):
    8789{{{
     
    8991  <name>android_arm_pie</name>
    9092  <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>
    9198</plan_class>
    9299}}}
     
    113120-llog refers to the library required to use Logcat from native code.
    114121Logcat is used for debugging purposes and is not required for the app's functionality.
     122