We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4679182 commit dfdcb77Copy full SHA for dfdcb77
README.md
@@ -6,19 +6,19 @@ What is PoEditor? [Check it out](https://poeditor.com)
6
Download
7
--------
8
9
-Add [jitpack.io](https://jitpack.io/) to your repositories:
+In your main build.gradle, buildscript block, add [jitpack.io](https://jitpack.io/) to the repositories and include the plugin as a dependency:
10
```groovy
11
-allprojects {
+buildscript {
12
repositories {
13
- maven { url "https://jitpack.io" }
+ maven { url 'https://jitpack.io' }
14
+ ...
15
}
16
+ dependencies {
17
18
+ classpath 'com.github.bq:poeditor-android-gradle-plugin:0.2.5'
19
20
```
21
-Include the dependency:
-```groovy
-classpath "com.github.bq:poeditor-android-gradle-plugin:0.2.5"
-```
22
Enjoy!
23
24
Configuration
0 commit comments