Advertisement
Anton666

ig3

Feb 17th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.catholic.instagram">
  4.  
  5. <uses-permission android:name="android.permission.INTERNET"/>
  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. android:label="@string/app_name"
  17. android:theme="@style/AppTheme.NoActionBar">
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN" />
  20.  
  21. <category android:name="android.intent.category.LAUNCHER" />
  22. </intent-filter>
  23. </activity>
  24.  
  25. <meta-data
  26. android:name="com.google.android.gms.version"
  27. android:value="@integer/google_play_services_version" />
  28.  
  29. <activity
  30. android:name="com.google.android.gms.ads.AdActivity"
  31. android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
  32.  
  33. </application>
  34.  
  35. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement