Skip to content

Commit 2662f8c

Browse files
author
Blankj
committed
see 03/15 log
1 parent c898bee commit 2662f8c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'com.android.application'
22

3-
File signPropertiesFile = rootProject.file('sign/keystore.properties')
3+
File signPropertiesFile = file('sign/keystore.properties')
44

55
android {
66
compileSdkVersion compile_sdk_version
@@ -17,7 +17,7 @@ android {
1717
properties.load(new FileInputStream(signPropertiesFile))
1818
signingConfigs {
1919
release {
20-
storeFile rootProject.file(properties['keystore'])
20+
storeFile file(properties['keystore'])
2121
storePassword properties['storePassword']
2222
keyAlias properties['keyAlias']
2323
keyPassword properties['keyPassword']
@@ -48,15 +48,15 @@ android {
4848

4949
dependencies {
5050
implementation fileTree(include: ['*.jar'], dir: 'libs')
51-
implementation project(':utilcode')
51+
// implementation project(':utilcode')
5252
implementation project(':subutil')
5353
implementation "com.android.support:appcompat-v7:$support_version"
5454
implementation "com.android.support:design:$support_version"
5555
implementation 'com.r0adkll:slidableactivity:2.0.5'
5656
// LeakCanary
5757
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakcanary_version"
5858
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakcanary_version"
59-
// implementation 'com.blankj:utilcode:1.13.4'
59+
implementation 'com.blankj:utilcode:1.13.4'
6060
}
6161

6262

File renamed without changes.
File renamed without changes.

update_log.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
* 18/03/10 修复 KeyboardUtils#getContentViewInvisibleHeight,发布 1.13.4 版本
1+
* 18/03/14 修复 KeyboardUtils#getContentViewInvisibleHeight,发布 1.13.4 版本
22
* 18/03/10 完善 Utils#installAppSilent 和 DeviceUtils#getMacAddress,发布 1.13.3 版本
33
* 18/03/09 完善 ActivityUtils#getTopActivity
44
* 18/03/08 新增反射获取栈顶 Activity 的方法,发布 1.13.2 版本

0 commit comments

Comments
 (0)