Hi,
Hope this is the right forum channel. I'm working on a new project and would like to understand the best approach in choosing the app types for it.
My app has, lets say, two steps.
- STEP 1. SETTING UP THE ACTIVITY
- First runner CREATEs a team, and the app gives the user a team id (ex.12345)
- Other runners JOIN the team typing that 12345 as team Id.
(ok, users linked)
- STEP 2. RUNNING THE ACTIVITY.
I want the runner to choose the activity of his choice in his device, so I'm thinking on creating a 'Data Field' that will show this simple information. (say this is a data field with 5 labels)
----------------------------
- Runner a (-2:30)
- Runner b (-1:20)
YOU
- Runner c (+2:45)
- Runner d (+4:00)
----------------------------
That is the time/distance that other runners have compared with your position.
Your first question may be "how are you going to calculate this"??
Yes, every x seconds all runners will send a POST request to a BackEnd with his position. That same BackEnd will make all the magic and return the 5 closest runners of that team. Easy to explain, but not that easy to implement. But that is a backend problem, out of the scope of this topic.
I would like to ask you.
a. What kind of app do you suggest for the team setup. I'ts an app or a DataField can add some settings to the Activity that is currently running?
b. Can I share information between that first app and the DataField app?
c. Can I make a single bundle with both apps in it?
Thank you so much in advance.