File tree 9 files changed +15
-11
lines changed
src/main/resources/org/jraf/android/prefs/compiler
9 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 1
1
Prefs Changelog
2
2
===
3
3
4
+ v1.2.2 (2017-09-15)
5
+ ---
6
+ - Fixed a bug where some imports were missing in the generated code
7
+
4
8
v1.2.1 (2017-08-26)
5
9
---
6
10
- Added ` setXyz ` in addition to ` putXyz ` methods, to improve Kotlin interop.
Original file line number Diff line number Diff line change 19
19
``` groovy
20
20
dependencies {
21
21
/* ... */
22
- annotationProcessor 'org.jraf:prefs-compiler:1.2.1 '
23
- compile 'org.jraf:prefs:1.2.1 '
22
+ annotationProcessor 'org.jraf:prefs-compiler:1.2.2 '
23
+ implementation 'org.jraf:prefs:1.2.2 '
24
24
}
25
25
```
26
26
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
mavenCentral()
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:3.0.0-beta2 '
10
+ classpath ' com.android.tools.build:gradle:3.0.0-beta5 '
11
11
classpath ' com.github.ben-manes:gradle-versions-plugin:0.15.0'
12
12
}
13
13
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ sourceCompatibility = 1.6
5
5
targetCompatibility = 1.6
6
6
7
7
group = ' org.jraf'
8
- version = ' 1.2.1 '
8
+ version = ' 1.2.2 '
9
9
10
10
javadoc. failOnError = false
11
11
Original file line number Diff line number Diff line change 1
1
package ${package} ;
2
2
3
+ import java.util.Arrays;
4
+ import java.util.HashSet;
5
+ import java.util.Set;
6
+
3
7
<#if comment?? >
4
8
/**
5
9
* ${comment?trim }
Original file line number Diff line number Diff line change 1
1
package ${package} ;
2
2
3
- import java.util.Arrays;
4
- import java.util.HashSet;
5
3
import java.util.Set;
6
4
7
5
import android.content.SharedPreferences;
Original file line number Diff line number Diff line change 1
1
package ${package} ;
2
2
3
- import java.util.Arrays;
4
- import java.util.HashSet;
5
3
import java.util.Set;
6
4
7
5
import android.annotation.SuppressLint;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ sourceCompatibility = 1.6
5
5
targetCompatibility = 1.6
6
6
7
7
group = ' org.jraf'
8
- version = ' 1.2.1 '
8
+ version = ' 1.2.2 '
9
9
10
10
javadoc. failOnError = false
11
11
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ android {
9
9
minSdkVersion 14
10
10
targetSdkVersion 26
11
11
versionCode 1
12
- versionName ' 1.2.1 '
12
+ versionName ' 1.2.2 '
13
13
}
14
14
buildTypes {
15
15
release {
@@ -20,7 +20,7 @@ android {
20
20
}
21
21
22
22
dependencies {
23
- implementation ' com.android.support:support-annotations:26.0.1 '
23
+ implementation ' com.android.support:support-annotations:26.0.2 '
24
24
25
25
annotationProcessor project(' :prefs-compiler' )
26
26
implementation project(' :prefs' )
You can’t perform that action at this time.
0 commit comments