Guest User

Untitled

a guest
Nov 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <application
  4. android:allowBackup="true"
  5. android:icon="@mipmap/ic_launcher"
  6. android:label="@string/app_name"
  7. android:roundIcon="@mipmap/ic_launcher_round"
  8. android:supportsRtl="true"
  9. android:theme="@style/Theme.AppCompat">
  10. <activity android:name=".Main">
  11. <intent-filter>
  12. <action android:name="android.intent.action.MAIN" />
  13.  
  14. <category android:name="android.intent.category.LAUNCHER" />
  15. </intent-filter>
  16. </activity>
  17. <activity android:name=".login" />
  18. <activity android:name=".Signup" />
  19. <activity
  20. android:name=".Home"
  21. android:label="@string/title_activity_home"
  22. android:theme="@style/AppTheme.NoActionBar"></activity>
  23. </application>
  24.  
  25. apply plugin: 'com.android.application'
  26.  
  27. //Library
  28. compile 'com.android.support:appcompat-v7:26.1.0'
  29. compile 'com.google.firebase:firebase-core:11.4.2'
  30. compile 'com.google.firebase:firebase-database:11.4.2'
  31. compile 'com.rengwuxian.materialedittext:library:2.1.4'
  32.  
  33. compile 'com.android.support:cardview-v7:26.1.0'
  34. compile 'com.android.support:recyclerview-v7:26.1.0'
  35. compile 'com.squareup.picasso:picasso:2.5.2'
  36. compile 'com.firebaseui:firebase-ui-database:2.3.0'
Add Comment
Please, Sign In to add comment