Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
weixiansen574 committed Apr 30, 2024
1 parent 79a3d44 commit b672f4b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions HybridFileXfer-Android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "top.weixiansen574.hybridfilexfer"
minSdk 24
targetSdk 34
versionCode 11
versionName "1.1"
versionCode 111
versionName "1.1.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Binary file modified HybridFileXfer-Android/app/release/app-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions HybridFileXfer-Android/app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 11,
"versionName": "1.1",
"versionCode": 111,
"versionName": "1.1.1",
"outputFile": "app-release.apk"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public void run() {
transferredBytes += read;
}
fileOutputStream.close();
addEvent(FileTransferEvent.STATE_OVER,desc);
file.setLastModified(lastModified);//文件传输完成后将修改日期设置成与手机内一致的
System.out.println("{"+Thread.currentThread().getName()+"}"+desc);
} else if (identifier == TransferIdentifiers.FOLDER){
Expand All @@ -65,6 +66,7 @@ public void run() {
file.mkdirs();
}
file.setLastModified(lastModified);
addEvent(FileTransferEvent.STATE_OVER,filePath);
System.out.println(filePath);
} else if (identifier == TransferIdentifiers.FILE_SLICE){
String filePath = dis.readUTF();//文件路径
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,6 @@ UI是双排文件管理器(照搬的MT管理器)。左边文件列表是当

具体请查看源码

``` mermaid
```



# 其他
Expand Down

0 comments on commit b672f4b

Please sign in to comment.