Lines Matching full:application
7 native activity. With a native activity, it is possible to write a completely native application.
10 your application to be native in your `AndroidManifest.xml` file and begin creating your native
11 application.
28 activity. Because the main thread of your application handles the callbacks, your callback
29 implementations must not be blocking. If they block, you might receive ANR (Application Not
53 callbacks in an event loop in another thread. See the native-activity sample application for more
70 <application android:label="@string/app_name" android:hasCode="false">
83 </application>
108 ANR (Application Not Responding) errors because the main UI thread is waiting for the callbacks
111 7. Develop the rest of your application.