Created
October 11, 2017 23:32
-
-
Save kenny-io/709f5ea7d9ec414710176402909c4b90 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MainActivity extends AppCompatActivity { | |
private static final String NAME_KEY = "Name"; | |
private static final String EMAIL_KEY = "Email"; | |
private static final String PHONE_KEY = "Phone"; | |
FirebaseFirestore db; | |
TextView textDisplay; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
db = FirebaseFirestore.getInstance(); | |
textDisplay = findViewById(R.id.textDisplay); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment