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
* New: Support for incremental annotation processing
7
+
* Switch from Support annotations library to `androidx.annotation`
8
+
* Java 8 is now required
9
+
* Minimum SDK increased from `9` to `14` (app shortcuts are still not available before `25`)
10
+
* Update: Android Gradle plugin to `3.6.4`
11
+
* Some small changes to bring everything to 2020
12
+
13
+
14
+
Version 1.0.2 *(2017-09-24)*
15
+
-----------------------------
16
+
* Fix: Annotated methods are called before `onCreate()` (#13)
17
+
* Update: Support annotations library to `26.0.2`. This requires the new Google Maven Repository:
18
+
19
+
```groovy
20
+
google()
21
+
```
22
+
or
23
+
```groovy
24
+
maven {
25
+
url "https://maven.google.com"
26
+
}
27
+
```
28
+
29
+
30
+
Version 1.0.1 *(2017-03-04)*
31
+
-----------------------------
32
+
33
+
* Fix: `Shortbread.create(context)` can now also be called if there are no `@Shortcut` annotations in the code, which before produced a crash. Previously created shortcuts are now removed.
34
+
* Fix: Internal `NullPointerException` when an activity containing method shortcuts is not launched via a method shortcut
0 commit comments