Ola_Mundo

AndroidManifest.xml

Jun 26th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 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="none.treego">
  4.  
  5. <!-- To access Google+ APIs: -->
  6. <uses-permission android:name="android.permission.INTERNET" />
  7.  
  8. <application
  9. android:allowBackup="true"
  10. android:icon="@mipmap/ic_launcher"
  11. android:label="@string/app_name"
  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. <fragment
  26. android:id="@+id/fragmentAddTree"
  27. android:name="none.treego.fragmentAddTree"
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent" />
  30.  
  31. <activity
  32. android:name=".AddTreeActivity"
  33. android:label="@string/title_activity_add_tree"
  34. android:theme="@style/AppTheme.NoActionBar"></activity><!-- ATTENTION: This was auto-generated to add Google Play services to your project for
  35. App Indexing. See https://g.co/AppIndexing/AndroidStudio for more information. -->
  36. <meta-data
  37. android:name="com.google.android.gms.version"
  38. android:value="@integer/google_play_services_version" />
  39. </application>
  40.  
  41. </manifest>
Add Comment
Please, Sign In to add comment