Advertisement
euis_kusesa

Manifests

Dec 24th, 2018
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.asusx441n.examplelistviewdinamis">
  4.  
  5. <uses-permission android:name="android.permission.INTERNET"></uses-permission>
  6.  
  7. <application
  8. android:allowBackup="true"
  9. android:icon="@mipmap/ic_launcher"
  10. android:label="@string/app_name"
  11. android:roundIcon="@mipmap/ic_launcher_round"
  12. android:supportsRtl="true"
  13. android:theme="@style/AppTheme">
  14. <activity
  15. android:name=".MainActivity">
  16. </activity>
  17. <activity
  18. android:name=".MainActivityDetail"
  19. android:parentActivityName=".MainActivity">
  20. </activity>
  21. <activity
  22. android:name=".SplashScreen">
  23. <intent-filter>
  24. <action android:name="android.intent.action.MAIN" />
  25.  
  26. <category android:name="android.intent.category.LAUNCHER" />
  27. </intent-filter>
  28. </activity>
  29. </application>
  30.  
  31. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement