Skip to content

Commit

Permalink
update to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
肖琪(融汇/产品技术中心) committed Jun 2, 2021
1 parent 38f03e3 commit 8d011f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ dependencies {
// kapt project(':savehelper-processor')
// implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"


implementation 'com.github.JavaNoober:AutoSave:savehelper:4.0.0'
implementation 'com.github.JavaNoober:AutoSave:savehelper-api:4.0.0'
kapt 'com.github.JavaNoober:AutoSave:savehelper-processor:4.0.0'
implementation 'com.github.JavaNoober.AutoSave:savehelper:4.0.1'
implementation 'com.github.JavaNoober.AutoSave:savehelper-api:4.0.1'
kapt 'com.github.JavaNoober.AutoSave:savehelper-processor:4.0.1'
}

Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ class SavePlugin implements Plugin<Project> {
// project.dependencies {
// implementation 'org.aspectj:aspectjrt:1.8.13'
// }
final def autoSaveVersion = "4.0.0"
final def autoSaveVersion = "4.0.2"
if (project.plugins.hasPlugin('kotlin-android')) {
project.dependencies {
implementation 'org.aspectj:aspectjrt:1.9.4'
implementation "com.github.JavaNoober.AutoSave:savehelper:${autoSaveVersion}"
kapt "com.github.JavaNoober:processor.AutoSave:savehelper-processor:${autoSaveVersion}"
kapt "com.github.JavaNoober.AutoSave:savehelper-processor:${autoSaveVersion}"
implementation "com.github.JavaNoober.AutoSave:savehelper-api:${autoSaveVersion}"
}
} else {
project.dependencies {
implementation 'org.aspectj:aspectjrt:1.9.4'
implementation "com.github.JavaNoober.AutoSave:savehelper:${autoSaveVersion}"
annotationProcessor "com.github.JavaNoober:processor.AutoSave:savehelper-processor:${autoSaveVersion}"
annotationProcessor "com.github.JavaNoober.AutoSave:savehelper-processor:${autoSaveVersion}"
implementation "com.github.JavaNoober.AutoSave:savehelper-api:${autoSaveVersion}"
}
}
Expand Down

0 comments on commit 8d011f4

Please sign in to comment.