You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@ If you're a developer wanting to contribute, read on.
5
5
6
6
## Build Instructions ##
7
7
8
-
1. Make sure you've installed [Android Studio](https://developer.android.com/studio/index.html).
9
-
1. Install npm using [Node Version Manager](https://github.com/nvm-sh/nvm)(nvm), as described in step one from the [Block Editor Quickstart guide](https://developer.wordpress.org/block-editor/tutorials/devenv/#quickstart)
8
+
1. Make sure you've installed [Android Studio](https://developer.android.com/studio).
9
+
1. Install npm using [Node Version Manager](https://github.com/nvm-sh/nvm)(nvm), as described in step one from the [Block Editor Quickstart guide](https://developer.wordpress.org/block-editor/getting-started/devenv/#quickstart)
10
10
1.`cd WordPress-Android` to enter the working directory.
11
11
1.`cp gradle.properties-example gradle.properties` to set up the sample app credentials file.
12
12
1. In Android Studio, open the project from the local repository. This will auto-generate `local.properties` with the SDK location.
@@ -16,7 +16,7 @@ If you're a developer wanting to contribute, read on.
16
16
17
17
Notes:
18
18
19
-
* While loading/building the app in Android Studio ignore the prompt to update the gradle plugin version as that will probably introduce build errors. On the other hand, feel free to update if you are planning to work on ensuring the compatibility of the newer version.
19
+
* While loading/building the app in Android Studio, ignore the prompt to update the Gradle plugin version, as that will probably introduce build errors. On the other hand, feel free to update if you are planning to work on ensuring the compatibility of the newer version.
20
20
21
21
## Build and Test ##
22
22
@@ -92,7 +92,7 @@ in the `libs/` directory comes from external libraries, which might
92
92
be covered by a different license compatible with the GPLv2.
Copy file name to clipboardExpand all lines: docs/coding-style.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
# Coding Style
2
2
3
-
Our code style guidelines are based on the [Android Code Style Guidelines for Contributors](https://source.android.com/source/code-style.html). We only changed a few rules:
3
+
Our code style guidelines are based on the [Android Code Style Guidelines for Contributors](https://source.android.com/docs/setup/contribute/code-style). We only changed a few rules:
4
4
5
5
* Line length is 120 characters
6
6
* FIXME must not be committed in the repository use TODO instead. FIXME can be used in your own local repository only.
7
7
8
-
On top of the Android linter rules (best run for this project using `./gradlew lintWordPressVanillaRelease`), we use two linters: [Checkstyle](http://checkstyle.sourceforge.net/) (for Java and some language-independent custom project rules), and [detekt](https://detekt.github.io/detekt/) (for Kotlin).
8
+
On top of the Android linter rules (best run for this project using `./gradlew lintWordPressVanillaRelease`), we use two linters: [Checkstyle](https://checkstyle.sourceforge.io/) (for Java and some language-independent custom project rules), and [detekt](https://detekt.dev/) (for Kotlin).
0 commit comments