Browse Source

fix bugs and update readme

kongzue 4 years ago
parent
commit
187305ddaf
2 changed files with 5 additions and 5 deletions
  1. 3 3
      DialogX/build.gradle
  2. 2 2
      README.md

+ 3 - 3
DialogX/build.gradle

@@ -6,7 +6,7 @@ def siteUrl = 'https://github.com/kongzue/DialogX' //项目在github主页地址
 def gitUrl = 'https://github.com/kongzue/DialogX.git'   //Git仓库的地址
 def gitUrl = 'https://github.com/kongzue/DialogX.git'   //Git仓库的地址
 
 
 group = "com.kongzue.dialogx"
 group = "com.kongzue.dialogx"
-version = "0.0.3"
+version = "0.0.4"
 
 
 android {
 android {
     compileSdkVersion 30
     compileSdkVersion 30
@@ -14,8 +14,8 @@ android {
     defaultConfig {
     defaultConfig {
         minSdkVersion 21
         minSdkVersion 21
         targetSdkVersion 30
         targetSdkVersion 30
-        versionCode 3
-        versionName "0.0.3"
+        versionCode 4
+        versionName "0.0.4"
 
 
         consumerProguardFiles "consumer-rules.pro"
         consumerProguardFiles "consumer-rules.pro"
 
 

+ 2 - 2
README.md

@@ -96,7 +96,7 @@ DialogX 采用了主体分离结构,主框架仅包含 Material 设计风格
 想要在您的项目引入 DialogX,您需要在 app 的 build.gradle 文件中找到 `dependencies{}` 代码块,并在其中加入以下语句:
 想要在您的项目引入 DialogX,您需要在 app 的 build.gradle 文件中找到 `dependencies{}` 代码块,并在其中加入以下语句:
 
 
 ```
 ```
-implementation 'com.kongzue.dialogx:DialogX:0.0.3'
+implementation 'com.kongzue.dialogx:DialogX:0.0.4'
 ```
 ```
 
 
 若有需要,也可以手动配置 Maven:
 若有需要,也可以手动配置 Maven:
@@ -105,7 +105,7 @@ implementation 'com.kongzue.dialogx:DialogX:0.0.3'
 <dependency>
 <dependency>
   <groupId>com.kongzue.dialogx</groupId>
   <groupId>com.kongzue.dialogx</groupId>
   <artifactId>DialogX</artifactId>
   <artifactId>DialogX</artifactId>
-  <version>0.0.3</version>
+  <version>0.0.4</version>
   <type>pom</type>
   <type>pom</type>
 </dependency>
 </dependency>
 ```
 ```