android.jar only contains classes that are part of the public SDK. You can see the AOSP source for UiAutomationConnection.java at https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/app/UiAutomationConnection.java <https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/app/UiAutomationConnection.java#>. The @hide annotation in the javadoc marks it as a private platform API, which is why it is not visible in android.jar.
On Fri, May 3, 2019 at 1:37 PM <[email protected]> wrote: > I downloaded the offical SDK and unzip it. What I am interested in is > UiAutomationConnection.java(.class) but I do not see it. However, I do see > UiAutomation.class. Any thoughts? > > -- > -- > You received this message because you are subscribed to the "Android > Building" mailing list. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-building?hl=en > > --- > You received this message because you are subscribed to the Google Groups > "Android Building" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- -- You received this message because you are subscribed to the "Android Building" mailing list. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-building?hl=en --- You received this message because you are subscribed to the Google Groups "Android Building" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
