Skip to content

Commit 6b9c688

Browse files
committed
fix: publish 4.3.3
1 parent 9b99ebf commit 6b9c688

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

README-EN.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<p align="center"><img src="https://github.com/azhon/AppUpdate/blob/main/img/logo.png"></p>
44
<p align="center">
55
<img src="https://img.shields.io/badge/miniSdk-16%2B-blue.svg">
6-
<img src="https://img.shields.io/badge/mavenCentral-4.3.2-brightgreen.svg">
6+
<img src="https://img.shields.io/badge/mavenCentral-4.3.3-brightgreen.svg">
77
<img src="https://img.shields.io/badge/author-azhon-%23E066FF.svg">
88
<img src="https://img.shields.io/badge/license-Apache2.0-orange.svg">
99
</p>
@@ -57,7 +57,7 @@
5757
#### Step1:`app/build.gradle`
5858

5959
```groovy
60-
implementation 'io.github.azhon:appupdate:4.3.2'
60+
implementation 'io.github.azhon:appupdate:4.3.3'
6161
```
6262
<details>
6363
<summary>Since in-app updates are prohibited by GooglePlay policy, it can be handled in productFlavors</summary>
@@ -148,9 +148,9 @@ class MyDownload : BaseHttpDownloadManager() {}
148148

149149
### Version update record
150150

151-
* v4.3.2(2023/12/18
151+
* v4.3.3(2024/07/23
152152

153-
* [Fix] Targeting S+ requires FLAG IMMUTABLE bug
153+
* [Opt] Nothing changed, only publish a new version
154154

155155
#### [More update records click here to view](https://github.com/azhon/AppUpdate/wiki/Home)
156156

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<p align="center"><img src="https://github.com/azhon/AppUpdate/blob/main/img/logo.png"></p>
44
<p align="center">
55
<img src="https://img.shields.io/badge/miniSdk-16%2B-blue.svg">
6-
<img src="https://img.shields.io/badge/mavenCentral-4.3.2-brightgreen.svg">
6+
<img src="https://img.shields.io/badge/mavenCentral-4.3.3-brightgreen.svg">
77
<img src="https://img.shields.io/badge/author-azhon-%23E066FF.svg">
88
<img src="https://img.shields.io/badge/license-Apache2.0-orange.svg">
99
</p>
@@ -73,7 +73,7 @@
7373
#### 第一步:`app/build.gradle`添加依赖
7474

7575
```groovy
76-
implementation 'io.github.azhon:appupdate:4.3.2'
76+
implementation 'io.github.azhon:appupdate:4.3.3'
7777
```
7878

7979
<details>
@@ -176,9 +176,9 @@ class MyDownload : BaseHttpDownloadManager() {}
176176

177177
### 版本更新记录
178178

179-
* v4.3.2(2023/12/18
179+
* v4.3.3(2024/07/23
180180

181-
* [修复] Targeting S+ requires FLAG IMMUTABLE bug
181+
* [优化] 没有改动,只想发布个版本
182182

183183
* [更多更新记录点此查看](https://github.com/azhon/AppUpdate/wiki/Home)
184184

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ ext {
1212
compileSdk = 33
1313
targetSdk = 33
1414
minSdk = 16
15-
publishVersion = "4.3.2"
15+
publishVersion = "4.3.3"
1616
}

maven.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
apply plugin: 'maven-publish'
22
apply plugin: 'signing'
33

4-
task generateSourcesJar(type: Jar) {
5-
from android.sourceSets.main.java.srcDirs
6-
classifier 'sources'
7-
}
84
Properties localProperties = new Properties()
95
localProperties.load(project.rootProject.file('local.properties').newDataInputStream())
106

@@ -16,7 +12,6 @@ afterEvaluate {
1612
groupId "io.github.azhon"
1713
artifactId project.ARTIFACT_ID
1814
version rootProject.ext.publishVersion
19-
artifact generateSourcesJar
2015
pom {
2116
name = 'AppUpdate'
2217
description = 'Android App update library. Android版本更新库,简单、轻量、可随意定制'

0 commit comments

Comments
 (0)