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
For more options, such as edit history, listeners and plugins please refer to the [demo app implementation](https://github.com/wordpress-mobile/AztecEditor-Android/blob/9fdc1958ca1e1ad5de6fba15dabe251bcf0fc7b6/app/src/main/kotlin/org/wordpress/aztec/demo/MainActivity.kt#L331-L346).
63
+
For more options, such as edit history, listeners and plugins please refer to the [demo app implementation](https://github.com/wordpress-mobile/AztecEditor-Android/blob/develop/app/src/main/kotlin/org/wordpress/aztec/demo/MainActivity.kt).
64
64
65
65
## Build and test
66
66
@@ -98,18 +98,27 @@ $ ./gradlew cAT
98
98
99
99
## Integrating Aztec in your project
100
100
101
-
The library is not ready for prime time yet, so it's not published on Maven
102
-
Central. Currently the library is distributed as an [alpha build](https://github.com/wordpress-mobile/AztecEditor-Android/releases).
101
+
You can import Aztec into your project using Jitpack:
102
+
```gradle
103
+
repositories {
104
+
maven { url "https://jitpack.io" }
105
+
}
106
+
```
107
+
```gradle
108
+
dependencies {
109
+
api ('com.github.wordpress-mobile.WordPress-Aztec-Android:aztec:v1.3.1')
110
+
}
111
+
```
103
112
104
113
Brave developers can either use the project as a source distribution
105
-
or have fun with JitPack at their own risk:
114
+
or have fun with the latest snapshot at their own risk:
api ('com.github.wordpress-mobile.WordPress-Aztec-Android:aztec:develop-SNAPSHOT')
119
+
}
109
120
```
110
121
111
-
When Aztec is ready, we'll publish the artifact in Maven.
112
-
113
122
## Code formatting
114
123
115
124
We use [ktlint](https://github.com/shyiko/ktlint) for Kotlin linting. You can run ktlint using `./gradlew ktlint`, and you can also run `./gradlew ktlintFormat` for auto-formatting. There is no IDEA plugin (like Checkstyle's) at this time.
0 commit comments