();
37 |
38 | // TODO: Rename and change types of parameters
39 | private String mParam1;
40 | private String mParam2;
41 |
42 | private OnFragmentInteractionListener mListener;
43 |
44 | public HomeFragment() {
45 | // Required empty public constructor
46 | }
47 |
48 | /**
49 | * Use this factory method to create a new instance of
50 | * this fragment using the provided parameters.
51 | *
52 | * @param param1 Parameter 1.
53 | * @param param2 Parameter 2.
54 | * @return A new instance of fragment HomeFragment.
55 | */
56 | // TODO: Rename and change types and number of parameters
57 | public static HomeFragment newInstance(String param1, String param2) {
58 | HomeFragment fragment = new HomeFragment();
59 | Bundle args = new Bundle();
60 | args.putString(ARG_PARAM1, param1);
61 | args.putString(ARG_PARAM2, param2);
62 | fragment.setArguments(args);
63 | return fragment;
64 | }
65 |
66 | @Override
67 | public void onCreate(Bundle savedInstanceState) {
68 | super.onCreate(savedInstanceState);
69 | if (getArguments() != null) {
70 | mParam1 = getArguments().getString(ARG_PARAM1);
71 | mParam2 = getArguments().getString(ARG_PARAM2);
72 | }
73 | }
74 |
75 | @Override
76 | public View onCreateView(LayoutInflater inflater, ViewGroup container,
77 | Bundle savedInstanceState) {
78 | // Inflate the layout for this fragment
79 | View view = inflater.inflate(R.layout.fragment_home,container,false);
80 | ListView postListView = (ListView) view.findViewById(R.id.post_list);
81 |
82 | postList.add(new PostModel(R.drawable.foto1,"Trabzon","Karadeniz'in incisi olarak tabir edilen, eşsiz doğasıyla nefes kesen bir şehir Trabzon."));
83 | postList.add(new PostModel(R.drawable.foto2,"Mardin","Dicle ve Fırat nehirleri arasında yer alan Mardin Güneydoğu Anadolu Bölgesi'nin en çok merak edilen şehirlerinden biridir."));
84 | postList.add(new PostModel(R.drawable.foto3,"İzmir","ürkiye'nin batısında, Ege Denizi'nin kıyısında yer alan Ege'nin İncisi İzmir, Türkiye'nin 3'üncü büyük kentidir."));
85 | postList.add(new PostModel(R.drawable.foto4,"İstanbul","Avrupa ve Asya'yı birbirine bağlayan, çok sayıda medeniyetin izlerini taşıyan istanbul"));
86 |
87 | CustomPostAdapter customPostAdapter = new CustomPostAdapter(getLayoutInflater(),postList);
88 | postListView.setAdapter(customPostAdapter);
89 |
90 | postListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
91 | @Override
92 | public void onItemClick(AdapterView> parent, View view, int position, long id) {
93 | final AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
94 | builder.setTitle("Bilgiler");
95 | String selectedName = postList.get(position).getPostName();
96 | String selectedDescription = postList.get(position).getPostDescription();
97 | int selectedIcon = postList.get(position).getPostPicture();
98 | String message = selectedName + " " + selectedDescription;
99 | builder.setIcon(selectedIcon);
100 | builder.setMessage(message);
101 | builder.setNegativeButton("TAMAM", new DialogInterface.OnClickListener(){
102 | public void onClick(DialogInterface dialog, int id) {
103 |
104 | }
105 | });
106 | builder.show();
107 | }
108 | });
109 | return view;
110 | }
111 |
112 |
113 | // TODO: Rename method, update argument and hook method into UI event
114 | public void onButtonPressed(Uri uri) {
115 | if (mListener != null) {
116 | mListener.onFragmentInteraction(uri);
117 | }
118 | }
119 |
120 | @Override
121 | public void onAttach(Context context) {
122 | super.onAttach(context);
123 | }
124 |
125 | @Override
126 | public void onDetach() {
127 | super.onDetach();
128 | mListener = null;
129 | }
130 |
131 | /**
132 | * This interface must be implemented by activities that contain this
133 | * fragment to allow an interaction in this fragment to be communicated
134 | * to the activity and potentially other fragments contained in that
135 | * activity.
136 | *
137 | * See the Android Training lesson Communicating with Other Fragments for more information.
140 | */
141 | public interface OnFragmentInteractionListener {
142 | // TODO: Update argument type and name
143 | void onFragmentInteraction(Uri uri);
144 | }
145 | }
146 |
--------------------------------------------------------------------------------
/app/src/main/java/gelecegiyazanlar/com/gykfirebaseauthentication/fragments/MyNotesFragment.java:
--------------------------------------------------------------------------------
1 | package gelecegiyazanlar.com.gykfirebaseauthentication.fragments;
2 |
3 | import android.app.ProgressDialog;
4 | import android.content.Context;
5 | import android.content.Intent;
6 | import android.net.Uri;
7 | import android.os.Bundle;
8 | import android.support.design.widget.FloatingActionButton;
9 | import android.support.design.widget.Snackbar;
10 | import android.support.v4.app.Fragment;
11 | import android.util.Log;
12 | import android.view.LayoutInflater;
13 | import android.view.View;
14 | import android.view.ViewGroup;
15 | import android.widget.ArrayAdapter;
16 | import android.widget.Button;
17 | import android.widget.ListView;
18 |
19 | import com.google.firebase.database.DataSnapshot;
20 | import com.google.firebase.database.DatabaseError;
21 | import com.google.firebase.database.DatabaseReference;
22 | import com.google.firebase.database.FirebaseDatabase;
23 | import com.google.firebase.database.ValueEventListener;
24 |
25 | import java.util.ArrayList;
26 | import java.util.List;
27 |
28 | import gelecegiyazanlar.com.gykfirebaseauthentication.R;
29 | import gelecegiyazanlar.com.gykfirebaseauthentication.activities.AddNoteActivity;
30 | import gelecegiyazanlar.com.gykfirebaseauthentication.activities.AddPhotoActivity;
31 |
32 | /**
33 | * A simple {@link Fragment} subclass.
34 | * Activities that contain this fragment must implement the
35 | * {@link MyNotesFragment.OnFragmentInteractionListener} interface
36 | * to handle interaction events.
37 | * Use the {@link MyNotesFragment#newInstance} factory method to
38 | * create an instance of this fragment.
39 | */
40 | public class MyNotesFragment extends Fragment {
41 | // TODO: Rename parameter arguments, choose names that match
42 | // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
43 | private static final String ARG_PARAM1 = "param1";
44 | private static final String ARG_PARAM2 = "param2";
45 |
46 |
47 | // TODO: Rename and change types of parameters
48 | private String mParam1;
49 | private String mParam2;
50 | ArrayList myNotesList = new ArrayList();
51 | String myPlaces;
52 | ListView myNotesListLv;
53 | ArrayAdapter arrayAdapter;
54 | private ProgressDialog progressDialog;
55 | private OnFragmentInteractionListener mListener;
56 |
57 | public MyNotesFragment() {
58 | // Required empty public constructor
59 | }
60 |
61 | /**
62 | * Use this factory method to create a new instance of
63 | * this fragment using the provided parameters.
64 | *
65 | * @param param1 Parameter 1.
66 | * @param param2 Parameter 2.
67 | * @return A new instance of fragment MyNotesFragment.
68 | */
69 | // TODO: Rename and change types and number of parameters
70 | public static MyNotesFragment newInstance(String param1, String param2) {
71 | MyNotesFragment fragment = new MyNotesFragment();
72 | Bundle args = new Bundle();
73 | args.putString(ARG_PARAM1, param1);
74 | args.putString(ARG_PARAM2, param2);
75 | fragment.setArguments(args);
76 | return fragment;
77 | }
78 |
79 | @Override
80 | public void onCreate(Bundle savedInstanceState) {
81 | super.onCreate(savedInstanceState);
82 | if (getArguments() != null) {
83 | mParam1 = getArguments().getString(ARG_PARAM1);
84 | mParam2 = getArguments().getString(ARG_PARAM2);
85 | }
86 | myNotesList = getMyNotes();
87 |
88 |
89 | }
90 |
91 | @Override
92 | public View onCreateView(LayoutInflater inflater, ViewGroup container,
93 | Bundle savedInstanceState) {
94 | // Inflate the layout for this fragment
95 | View myNotesView = inflater.inflate(R.layout.fragment_my_notes, container, false);
96 | Button addNotesBtn = (Button) myNotesView.findViewById(R.id.fragment_add_notes_btn);
97 | addNotesBtn.setOnClickListener(new View.OnClickListener() {
98 | @Override
99 | public void onClick(View view) {
100 | Intent addNoteIntent = new Intent(getContext(), AddNoteActivity.class);
101 | startActivity(addNoteIntent);
102 | }
103 | });
104 | myNotesListLv = (ListView) myNotesView.findViewById(R.id.my_notes_lv);
105 |
106 | arrayAdapter = new ArrayAdapter
107 | (getContext(), android.R.layout.simple_list_item_1, android.R.id.text1, myNotesList);
108 | myNotesListLv.setAdapter(arrayAdapter);
109 | return myNotesView;
110 | }
111 |
112 |
113 | private ArrayList getMyNotes() {
114 | showProgressDialog();
115 | final ArrayList myNotes = new ArrayList<>();
116 | FirebaseDatabase database = FirebaseDatabase.getInstance();
117 | final DatabaseReference myRef = database.getReference().child("GezdigimYerler");
118 | myRef.addValueEventListener(new ValueEventListener() {
119 | @Override
120 | public void onDataChange(DataSnapshot dataSnapshot) {
121 | progressDialog.dismiss();
122 | for (DataSnapshot ds : dataSnapshot.getChildren()) {
123 | myPlaces = ds.child("sehirAdi").getValue().toString();
124 | myNotes.add(myPlaces);
125 |
126 | }
127 | arrayAdapter.notifyDataSetChanged();
128 |
129 | }
130 |
131 | @Override
132 | public void onCancelled(DatabaseError databaseError) {
133 | progressDialog.dismiss();
134 | }
135 | });
136 |
137 | return myNotes;
138 |
139 | }
140 |
141 | private void showProgressDialog() {
142 | progressDialog = new ProgressDialog(getContext());
143 | progressDialog.setMessage("Yükleniyor...");
144 | progressDialog.setCancelable(false);
145 | progressDialog.show();
146 | }
147 |
148 | // TODO: Rename method, update argument and hook method into UI event
149 | public void onButtonPressed(Uri uri) {
150 | if (mListener != null) {
151 | mListener.onFragmentInteraction(uri);
152 | }
153 | }
154 |
155 | @Override
156 | public void onAttach(Context context) {
157 | super.onAttach(context);
158 | }
159 |
160 | @Override
161 | public void onDetach() {
162 | super.onDetach();
163 | mListener = null;
164 | }
165 |
166 | /**
167 | * This interface must be implemented by activities that contain this
168 | * fragment to allow an interaction in this fragment to be communicated
169 | * to the activity and potentially other fragments contained in that
170 | * activity.
171 | *
172 | * See the Android Training lesson Communicating with Other Fragments for more information.
175 | */
176 | public interface OnFragmentInteractionListener {
177 | // TODO: Update argument type and name
178 | void onFragmentInteraction(Uri uri);
179 | }
180 | }
181 |
--------------------------------------------------------------------------------
/app/src/main/java/gelecegiyazanlar/com/gykfirebaseauthentication/fragments/ProfileFragment.java:
--------------------------------------------------------------------------------
1 | package gelecegiyazanlar.com.gykfirebaseauthentication.fragments;
2 |
3 | import android.app.ProgressDialog;
4 | import android.content.ActivityNotFoundException;
5 | import android.content.Context;
6 | import android.content.Intent;
7 | import android.graphics.Bitmap;
8 | import android.net.Uri;
9 | import android.os.Bundle;
10 | import android.support.annotation.NonNull;
11 | import android.support.v4.app.Fragment;
12 | import android.view.LayoutInflater;
13 | import android.view.View;
14 | import android.view.ViewGroup;
15 | import android.widget.ImageView;
16 | import android.widget.TextView;
17 |
18 | import com.bumptech.glide.Glide;
19 | import com.bumptech.glide.request.animation.GlideAnimation;
20 | import com.bumptech.glide.request.target.SimpleTarget;
21 | import com.google.android.gms.tasks.OnFailureListener;
22 | import com.google.android.gms.tasks.OnSuccessListener;
23 | import com.google.firebase.storage.FirebaseStorage;
24 | import com.google.firebase.storage.StorageReference;
25 |
26 | import gelecegiyazanlar.com.gykfirebaseauthentication.R;
27 | import gelecegiyazanlar.com.gykfirebaseauthentication.activities.AddPhotoActivity;
28 | import gelecegiyazanlar.com.gykfirebaseauthentication.models.PhotoModel;
29 |
30 | /**
31 | * A simple {@link Fragment} subclass.
32 | * Activities that contain this fragment must implement the
33 | * {@link ProfileFragment.OnFragmentInteractionListener} interface
34 | * to handle interaction events.
35 | * Use the {@link ProfileFragment#newInstance} factory method to
36 | * create an instance of this fragment.
37 | */
38 | public class ProfileFragment extends Fragment {
39 | // TODO: Rename parameter arguments, choose names that match
40 | // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
41 | private static final String ARG_PARAM1 = "param1";
42 | private static final String ARG_PARAM2 = "param2";
43 |
44 | // TODO: Rename and change types of parameters
45 | private String mParam1;
46 | private String mParam2;
47 | ImageView profilePhoto;
48 | TextView profileName;
49 | TextView profileBio;
50 | ImageView profileUserInstagram;
51 | ImageView changeProfilePhoto;
52 | private ProgressDialog progressDialog;
53 | private OnFragmentInteractionListener mListener;
54 |
55 | public ProfileFragment() {
56 | // Required empty public constructor
57 | }
58 |
59 | /**
60 | * Use this factory method to create a new instance of
61 | * this fragment using the provided parameters.
62 | *
63 | * @param param1 Parameter 1.
64 | * @param param2 Parameter 2.
65 | * @return A new instance of fragment ProfileFragment.
66 | */
67 | // TODO: Rename and change types and number of parameters
68 | public static ProfileFragment newInstance(String param1, String param2) {
69 | ProfileFragment fragment = new ProfileFragment();
70 | Bundle args = new Bundle();
71 | args.putString(ARG_PARAM1, param1);
72 | args.putString(ARG_PARAM2, param2);
73 | fragment.setArguments(args);
74 | return fragment;
75 | }
76 |
77 | @Override
78 | public void onCreate(Bundle savedInstanceState) {
79 | super.onCreate(savedInstanceState);
80 | if (getArguments() != null) {
81 | mParam1 = getArguments().getString(ARG_PARAM1);
82 | mParam2 = getArguments().getString(ARG_PARAM2);
83 | }
84 | }
85 |
86 | @Override
87 | public View onCreateView(LayoutInflater inflater, ViewGroup container,
88 | Bundle savedInstanceState) {
89 |
90 | View profileView = inflater.inflate(R.layout.fragment_profile,container,false);
91 | profilePhoto = (ImageView) profileView.findViewById(R.id.profile_photo);
92 | changeProfilePhoto = (ImageView) profileView.findViewById(R.id.change_profile_photo);
93 | profileName = (TextView) profileView.findViewById(R.id.profile_name);
94 | profileBio = (TextView) profileView.findViewById(R.id.profile_bio);
95 | profileUserInstagram = (ImageView) profileView.findViewById(R.id.profile_user_instagram);
96 |
97 | changeProfilePhoto.setOnClickListener(new View.OnClickListener() {
98 | @Override
99 | public void onClick(View v) {
100 | Intent intent = new Intent(getContext(), AddPhotoActivity.class);
101 | startActivity(intent);
102 | }
103 | });
104 |
105 | profileUserInstagram.setOnClickListener(new View.OnClickListener() {
106 | @Override
107 | public void onClick(View v) {
108 | openInstagram();
109 | }
110 | });
111 |
112 | // Inflate the layout for this fragment
113 | return profileView;
114 | }
115 |
116 | @Override
117 | public void onResume() {
118 | super.onResume();
119 | showProfilePhoto();
120 |
121 | }
122 |
123 |
124 |
125 | private void showProfilePhoto() {
126 | showProgressDialog();
127 | FirebaseStorage fStorage = FirebaseStorage.getInstance();
128 | StorageReference storageRef = fStorage.getReference();
129 | storageRef.child("userprofilephoto").getDownloadUrl().addOnSuccessListener(new OnSuccessListener() {
130 | @Override
131 | public void onSuccess(Uri uri) {
132 | progressDialog.dismiss();
133 |
134 | Glide.with(getContext())
135 | .load(uri)
136 | .asBitmap()
137 | .centerCrop()
138 | .into(new SimpleTarget(200,200) {
139 | @Override
140 | public void onResourceReady(Bitmap resource,GlideAnimation glideAnimation) {
141 | profilePhoto.setImageBitmap(resource);
142 | }
143 | });
144 |
145 | }
146 | }).addOnFailureListener(new OnFailureListener() {
147 | @Override
148 | public void onFailure(@NonNull Exception e) {
149 | progressDialog.dismiss();
150 |
151 | }
152 | });
153 | }
154 |
155 | private void showProgressDialog() {
156 | progressDialog = new ProgressDialog(getContext());
157 | progressDialog.setMessage("Yükleniyor...");
158 | progressDialog.setCancelable(false);
159 | progressDialog.show();
160 | }
161 |
162 | private void openInstagram() {
163 | Uri instagramUri = Uri.parse("https://www.instagram.com/gezlist");
164 | Intent instagramIntent = new Intent(Intent.ACTION_VIEW, instagramUri);
165 |
166 | instagramIntent.setPackage("com.instagram.android");
167 |
168 | try {
169 | startActivity(instagramIntent);
170 | } catch (ActivityNotFoundException e) {
171 | startActivity(new Intent(Intent.ACTION_VIEW,
172 | Uri.parse("https://www.instagram.com/gezlist")));
173 | }
174 |
175 | }
176 |
177 | // TODO: Rename method, update argument and hook method into UI event
178 | public void onButtonPressed(Uri uri) {
179 | if (mListener != null) {
180 | mListener.onFragmentInteraction(uri);
181 | }
182 | }
183 |
184 | @Override
185 | public void onAttach(Context context) {
186 | super.onAttach(context);
187 | }
188 |
189 | @Override
190 | public void onDetach() {
191 | super.onDetach();
192 | mListener = null;
193 | }
194 |
195 | /**
196 | * This interface must be implemented by activities that contain this
197 | * fragment to allow an interaction in this fragment to be communicated
198 | * to the activity and potentially other fragments contained in that
199 | * activity.
200 | *
201 | * See the Android Training lesson Communicating with Other Fragments for more information.
204 | */
205 | public interface OnFragmentInteractionListener {
206 | // TODO: Update argument type and name
207 | void onFragmentInteraction(Uri uri);
208 | }
209 | }
210 |
--------------------------------------------------------------------------------
/app/src/main/java/gelecegiyazanlar/com/gykfirebaseauthentication/models/PostModel.java:
--------------------------------------------------------------------------------
1 | package gelecegiyazanlar.com.gykfirebaseauthentication.models;
2 |
3 | public class PostModel {
4 | int postPicture;
5 | String postName;
6 | String postDescription;
7 |
8 | public PostModel() {
9 | }
10 |
11 | public PostModel(int postPicture, String postName, String postDescription) {
12 |
13 | this.postPicture = postPicture;
14 | this.postName = postName;
15 | this.postDescription = postDescription;
16 | }
17 |
18 |
19 | public int getPostPicture() {
20 | return postPicture;
21 | }
22 |
23 | public void setPostPicture(int postPicture) {
24 | this.postPicture = postPicture;
25 | }
26 |
27 | public String getPostName() {
28 | return postName;
29 | }
30 |
31 | public void setPostName(String postName) {
32 | this.postName = postName;
33 | }
34 |
35 | public String getPostDescription() {
36 | return postDescription;
37 | }
38 |
39 | public void setPostDescription(String postDescription) {
40 | this.postDescription = postDescription;
41 | }
42 |
43 | }
44 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v24/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
1 |
7 |
12 |
13 |
19 |
22 |
25 |
26 |
27 |
28 |
34 |
35 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/add_note_ic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/add_note_ic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/add_photo_ic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/add_photo_ic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/foto1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/foto1.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable/foto2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/foto2.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable/foto3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/foto3.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable/foto4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/foto4.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_home_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
15 |
20 |
25 |
30 |
35 |
40 |
45 |
50 |
55 |
60 |
65 |
70 |
75 |
80 |
85 |
90 |
95 |
100 |
105 |
110 |
115 |
120 |
125 |
130 |
135 |
140 |
145 |
150 |
155 |
160 |
165 |
170 |
171 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_menu_camera.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_menu_gallery.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_menu_manage.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_menu_send.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_menu_share.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_menu_slideshow.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_person_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_remove_circle_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/instagram_ic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/instagram_ic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/login_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/login_background.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/nav_profile_picture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/nav_profile_picture.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/register_login_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/drawable/register_login_background.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/side_nav_bar.xml:
--------------------------------------------------------------------------------
1 |
3 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_add_note.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
22 |
23 |
34 |
35 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_add_photo.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
18 |
19 |
30 |
31 |
42 |
43 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_login.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
16 |
17 |
27 |
28 |
40 |
41 |
51 |
52 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
15 |
16 |
17 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_register.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
16 |
17 |
27 |
28 |
40 |
41 |
54 |
55 |
65 |
66 |
67 |
68 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/app_bar_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
13 |
14 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/content_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_home.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_my_notes.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
14 |
15 |
24 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_profile.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
16 |
17 |
23 |
24 |
25 |
34 |
35 |
36 |
37 |
47 |
48 |
56 |
57 |
65 |
66 |
74 |
75 |
76 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/nav_header_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
22 |
23 |
29 |
30 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/photo_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/post_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
15 |
16 |
27 |
28 |
39 |
40 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/activity_main_drawer.xml:
--------------------------------------------------------------------------------
1 |
2 |
32 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/main.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/values-v21/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #f8b739
4 | #d79c2a
5 | #FF4081
6 | #FFFFFF
7 | #515151
8 | #6ab4ed
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 | 8dp
6 | 176dp
7 | 16dp
8 |
--------------------------------------------------------------------------------
/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | GezginApp
3 | Open navigation drawer
4 | Close navigation drawer
5 | Gezgin Uygulaması
6 | Bir gezginin kayıtları
7 | Gezgin Uygulaması
8 | Settings
9 |
10 |
11 | Hello blank fragment
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/src/test/java/gelecegiyazanlar/com/gykfirebaseauthentication/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package gelecegiyazanlar.com.gykfirebaseauthentication;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 |
5 | repositories {
6 | google()
7 | jcenter()
8 | }
9 | dependencies {
10 | classpath 'com.android.tools.build:gradle:3.1.4'
11 | classpath 'com.google.gms:google-services:4.0.1'
12 |
13 |
14 |
15 | // NOTE: Do not place your application dependencies here; they belong
16 | // in the individual module build.gradle files
17 | }
18 | }
19 |
20 | allprojects {
21 | repositories {
22 | google()
23 | jcenter()
24 | }
25 | }
26 |
27 | task clean(type: Delete) {
28 | delete rootProject.buildDir
29 | }
30 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | org.gradle.jvmargs=-Xmx1536m
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. More details, visit
12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13 | # org.gradle.parallel=true
14 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HasibeZaferr/FirebaseAuthenticationWithNavigationDrawer/d0ae29e8173ca573c1b9c641509c511648868485/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Apr 17 18:33:43 EET 2019
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Attempt to set APP_HOME
10 | # Resolve links: $0 may be a link
11 | PRG="$0"
12 | # Need this for relative symlinks.
13 | while [ -h "$PRG" ] ; do
14 | ls=`ls -ld "$PRG"`
15 | link=`expr "$ls" : '.*-> \(.*\)$'`
16 | if expr "$link" : '/.*' > /dev/null; then
17 | PRG="$link"
18 | else
19 | PRG=`dirname "$PRG"`"/$link"
20 | fi
21 | done
22 | SAVED="`pwd`"
23 | cd "`dirname \"$PRG\"`/" >/dev/null
24 | APP_HOME="`pwd -P`"
25 | cd "$SAVED" >/dev/null
26 |
27 | APP_NAME="Gradle"
28 | APP_BASE_NAME=`basename "$0"`
29 |
30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31 | DEFAULT_JVM_OPTS=""
32 |
33 | # Use the maximum available, or set MAX_FD != -1 to use that value.
34 | MAX_FD="maximum"
35 |
36 | warn () {
37 | echo "$*"
38 | }
39 |
40 | die () {
41 | echo
42 | echo "$*"
43 | echo
44 | exit 1
45 | }
46 |
47 | # OS specific support (must be 'true' or 'false').
48 | cygwin=false
49 | msys=false
50 | darwin=false
51 | nonstop=false
52 | case "`uname`" in
53 | CYGWIN* )
54 | cygwin=true
55 | ;;
56 | Darwin* )
57 | darwin=true
58 | ;;
59 | MINGW* )
60 | msys=true
61 | ;;
62 | NONSTOP* )
63 | nonstop=true
64 | ;;
65 | esac
66 |
67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
68 |
69 | # Determine the Java command to use to start the JVM.
70 | if [ -n "$JAVA_HOME" ] ; then
71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
72 | # IBM's JDK on AIX uses strange locations for the executables
73 | JAVACMD="$JAVA_HOME/jre/sh/java"
74 | else
75 | JAVACMD="$JAVA_HOME/bin/java"
76 | fi
77 | if [ ! -x "$JAVACMD" ] ; then
78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
79 |
80 | Please set the JAVA_HOME variable in your environment to match the
81 | location of your Java installation."
82 | fi
83 | else
84 | JAVACMD="java"
85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
86 |
87 | Please set the JAVA_HOME variable in your environment to match the
88 | location of your Java installation."
89 | fi
90 |
91 | # Increase the maximum file descriptors if we can.
92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
93 | MAX_FD_LIMIT=`ulimit -H -n`
94 | if [ $? -eq 0 ] ; then
95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
96 | MAX_FD="$MAX_FD_LIMIT"
97 | fi
98 | ulimit -n $MAX_FD
99 | if [ $? -ne 0 ] ; then
100 | warn "Could not set maximum file descriptor limit: $MAX_FD"
101 | fi
102 | else
103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
104 | fi
105 | fi
106 |
107 | # For Darwin, add options to specify how the application appears in the dock
108 | if $darwin; then
109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110 | fi
111 |
112 | # For Cygwin, switch paths to Windows format before running java
113 | if $cygwin ; then
114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116 | JAVACMD=`cygpath --unix "$JAVACMD"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Escape application args
158 | save () {
159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160 | echo " "
161 | }
162 | APP_ARGS=$(save "$@")
163 |
164 | # Collect all arguments for the java command, following the shell quoting and substitution rules
165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166 |
167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169 | cd "$(dirname "$0")"
170 | fi
171 |
172 | exec "$JAVACMD" "$@"
173 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | set DIRNAME=%~dp0
12 | if "%DIRNAME%" == "" set DIRNAME=.
13 | set APP_BASE_NAME=%~n0
14 | set APP_HOME=%DIRNAME%
15 |
16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17 | set DEFAULT_JVM_OPTS=
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windows variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 |
53 | :win9xME_args
54 | @rem Slurp the command line arguments.
55 | set CMD_LINE_ARGS=
56 | set _SKIP=2
57 |
58 | :win9xME_args_slurp
59 | if "x%~1" == "x" goto execute
60 |
61 | set CMD_LINE_ARGS=%*
62 |
63 | :execute
64 | @rem Setup the command line
65 |
66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
67 |
68 | @rem Execute Gradle
69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
70 |
71 | :end
72 | @rem End local scope for the variables with windows NT shell
73 | if "%ERRORLEVEL%"=="0" goto mainEnd
74 |
75 | :fail
76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
77 | rem the _cmd.exe /c_ return code!
78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
79 | exit /b 1
80 |
81 | :mainEnd
82 | if "%OS%"=="Windows_NT" endlocal
83 |
84 | :omega
85 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------