diff --git a/AndroidTimetableView/.idea/caches/build_file_checksums.ser b/AndroidTimetableView/.idea/caches/build_file_checksums.ser index ce37b04..a168440 100644 Binary files a/AndroidTimetableView/.idea/caches/build_file_checksums.ser and b/AndroidTimetableView/.idea/caches/build_file_checksums.ser differ diff --git a/AndroidTimetableView/.idea/misc.xml b/AndroidTimetableView/.idea/misc.xml index 6eafb68..b508e2d 100644 --- a/AndroidTimetableView/.idea/misc.xml +++ b/AndroidTimetableView/.idea/misc.xml @@ -100,7 +100,7 @@ - + diff --git a/AndroidTimetableView/TimetableView/build.gradle b/AndroidTimetableView/TimetableView/build.gradle index 6982ca1..9d90c9b 100644 --- a/AndroidTimetableView/TimetableView/build.gradle +++ b/AndroidTimetableView/TimetableView/build.gradle @@ -55,7 +55,7 @@ publish { repoName='Maven' groupId = 'com.zhuangfei'//jcenter上的路径 artifactId = 'TimetableView'//项目名称 - publishVersion = '2.0.7'//版本号 + publishVersion = '2.0.6'//版本号 desc = 'A beautiful Android based curriculum schedule widget'//描述,不重要 website = 'https://github.com/zfman/TimetableView'//网站,不重要;尽量模拟github上的地址,例如我这样的;当然你有地址最好了 } diff --git a/AndroidTimetableView/app/build.gradle b/AndroidTimetableView/app/build.gradle index b8e09cc..90567b9 100644 --- a/AndroidTimetableView/app/build.gradle +++ b/AndroidTimetableView/app/build.gradle @@ -35,7 +35,6 @@ android { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" implementation 'com.android.support:appcompat-v7:26.1.0' implementation 'com.android.support.constraint:constraint-layout:1.0.2' implementation 'com.android.support:support-v4:26.1.0' @@ -44,8 +43,8 @@ dependencies { androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' implementation project(':TimetableView') - debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3' - releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3' + debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.3' + releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.3' - compile 'com.github.bumptech.glide:glide:3.7.0' + implementation 'com.github.bumptech.glide:glide:3.7.0' }