Skip to content

Commit 63c7c19

Browse files
authored
docs: update readme
1 parent 08674b3 commit 63c7c19

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Repository for the PSLab Android App for performing experiments with the [Pocket
66
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/3383ddffb53b4c82a822f3a5991fe0a1)](https://www.codacy.com/gh/fossasia/pslab-android/dashboard?utm_source=github.com&utm_medium=referral&utm_content=fossasia/pslab-android&utm_campaign=Badge_Grade)
77
[![Mailing List](https://img.shields.io/badge/Mailing%20List-FOSSASIA-blue.svg)](https://groups.google.com/forum/#!forum/pslab-fossasia)
88
![Minimum API Level](https://img.shields.io/badge/Min%20API%20Level-23-green)
9-
![Maximum API Level](https://img.shields.io/badge/Max%20API%20Level-28-orange)
9+
![Maximum API Level](https://img.shields.io/badge/Max%20API%20Level-31-orange)
1010
![GitHub repo size](https://img.shields.io/github/repo-size/fossasia/pslab-android)
1111
[![Gitter](https://badges.gitter.im/fossasia/pslab.svg)](https://gitter.im/fossasia/pslab?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
1212
[![Twitter Follow](https://img.shields.io/twitter/follow/pslabio.svg?style=social&label=Follow&maxAge=2592000?style=flat-square)](https://twitter.com/pslabio)
@@ -151,19 +151,19 @@ If you built your own hardware, change VendorID and/or ProductID in [Communicati
151151

152152
### By direct cloning
153153

154-
1. Open Android Studio, you will see a **Welcome to Android** window. Under Quick Start, select "check out project from version control".
155-
2. Select git from the drop down menu that appeared.
156-
3. Go to the repository and click clone or download button.
157-
4. From the dropdown that appeared, copy the link.
158-
5. Paste the URL that you copied and press clone.
159-
6. Android studio should now begin building the project with gradle.
160-
7. Once this process is complete and Android Studio opens, check the Console for any build errors.
154+
1. Open Android Studio, you will see a **Welcome to Android** window. Under Quick Start, select "check out project from version control".
155+
2. Select git from the drop down menu that appeared.
156+
3. Go to the repository and click clone or download button.
157+
4. From the dropdown that appeared, copy the link.
158+
5. Paste the URL that you copied and press clone.
159+
6. Android studio should now begin building the project with gradle.
160+
7. Once this process is complete and Android Studio opens, check the Console for any build errors.
161161

162162
- _Note:_ If you receive a Gradle sync error titled, "failed to find ...", you should click on the link below the error message (if available) that says _Install missing platform(s) and sync project_ and allow Android studio to fetch you what is missing.
163163

164-
8. Once all build errors have been resolved, you should be all set to build the app and test it.
165-
9. To Build the app, go to _Build>Make Project_ (or alternatively press the Make Project icon in the toolbar).
166-
10. If the app was built successfully, you can test it by running it on either a real device or an emulated one by going to _Run>Run 'app'_ or pressing the Run icon in the toolbar.
164+
8. Once all build errors have been resolved, you should be all set to build the app and test it.
165+
9. To Build the app, go to _Build>Make Project_ (or alternatively press the Make Project icon in the toolbar).
166+
10. If the app was built successfully, you can test it by running it on either a real device or an emulated one by going to _Run>Run 'app'_ or pressing the Run icon in the toolbar.
167167

168168
If you want build apk only, go to Build>Build apk and apk would be build and directory where apk is generated would be prompted by Android Studio.
169169

@@ -205,27 +205,27 @@ As a tip for new developers those who struggle with squashing commits into one,
205205

206206
Despite any reason, follow the steps given below to squash all commits into one adhering to our best practices.
207207

208-
* Setup remote to upstream branch if not set before
208+
* Setup remote to upstream branch if not set before
209209

210210
`$ git remote add upstream https://github.com/fossasia/pslab-android.git`
211211

212-
* Check into the branch related to the pull request
212+
* Check into the branch related to the pull request
213213

214214
`$ git checkout <branch-name>`
215215

216-
* Perform a soft reset to retain the changes while removing all the commit details
216+
* Perform a soft reset to retain the changes while removing all the commit details
217217

218218
`$ git reset --soft upstream/development`
219219

220-
* Add files to the staging area
220+
* Add files to the staging area
221221

222222
`$ git add <file paths or "." to add everything>`
223223

224-
* Create a new commit with a proper message following commit message guidelines
224+
* Create a new commit with a proper message following commit message guidelines
225225

226226
`$ git commit -m "tag: commit message"`
227227

228-
* If you have already made a pull request
228+
* If you have already made a pull request
229229

230230
`$ git push -f origin <branch-name>`
231231

0 commit comments

Comments
 (0)