Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <intent-filter>
  2. <action android:name="android.intent.action.MAIN/>
  3. </intent-filter>
  4.  
  5. category android:name="android.intent.category.LAUNCHER"
  6. action android:name="android.intent.action.MAIN
  7.  
  8. public class MyApplication extends Application {
  9.  
  10. @Override
  11. public void onCreate() {
  12. super.onCreate();
  13. // делаем что-то
  14. }
  15. }
  16.  
  17. <application
  18. android:name=".MyApplication">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement