Sfoglia il codice sorgente

升级jar包,修改maven地址,提交2021.8.27.1版本

yanyi 3 anni fa
parent
commit
fa7080939a
4 ha cambiato i file con 24 aggiunte e 22 eliminazioni
  1. 11 12
      AllLib/build.gradle
  2. 8 5
      README.md
  3. 2 2
      app/build.gradle
  4. 3 3
      build.gradle

+ 11 - 12
AllLib/build.gradle

@@ -4,7 +4,6 @@ plugins {
 
 android {
     compileSdkVersion 30
-    buildToolsVersion "30.0.1"
 
     defaultConfig {
         minSdkVersion 14
@@ -31,19 +30,19 @@ android {
 dependencies {
 
     implementation 'androidx.appcompat:appcompat:1.2.0'
-    implementation 'com.google.android.material:material:1.2.1'
-    testImplementation 'junit:junit:4.+'
+    implementation 'com.google.android.material:material:1.3.0'
+    testImplementation 'junit:junit:4.13.2'
     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
 
-    api 'com.yanyi.benyanyi:Logger:1.0.4'
-    api 'com.yanyi.benyanyi:PermissionHelper:1.1.3'
-    api 'com.yanyi.benyanyi:BindView:1.0.9'
-    api 'com.yanyi.benyanyi:okhttplib:2.0.6'
-    api 'com.yanyi.benyanyi:BasicView:1.1.2'
-    api 'com.yanyi.benyanyi:basesqlite:1.1.5-2'
-    api 'com.yanyi.benyanyi:floatinginputbox:1.0.4'
-    api 'com.yanyi.benyanyi:picker:1.0.7'
-    api 'com.yanyi.benyanyi:DateSelect:1.0.2'
+    api 'com.yanyi.benyanyi:Logger:1.0.5'
+    api 'com.yanyi.benyanyi:PermissionHelper:1.1.4'
+    api 'com.yanyi.benyanyi:BindView:1.1.0'
+    api 'com.yanyi.benyanyi:okhttplib:2.0.8'
+    api 'com.yanyi.benyanyi:BasicView:1.1.3'
+    api 'com.yanyi.benyanyi:basesqlite:1.1.6'
+    api 'com.yanyi.benyanyi:floatinginputbox:1.0.5'
+    api 'com.yanyi.benyanyi:picker:1.0.8'
+    api 'com.yanyi.benyanyi:DateSelect:1.0.4-base1'
 }
 apply from: 'bintrayUpload.gradle'

+ 8 - 5
README.md

@@ -1,6 +1,6 @@
 # MavenAll
 
-![](https://img.shields.io/badge/MavenAll-2021.2.2.1-green)
+![](https://img.shields.io/badge/MavenAll-2021.8.27.1-green)
 
 开源集合
 ----------
@@ -10,13 +10,13 @@
 ~~~
 repositories {
         maven {
-            url "http://maven.benyanyi.com/nexus/content/repositories/mylove/"
+            url "http://maven.keleyanyi.com/repository/benyanyi/"
         }
     }
 ~~~
 ### module 下添加
 ~~~
-implementation 'com.yanyi.benyanyi:MavenAll:2021.2.27.1'
+implementation 'com.yanyi.benyanyi:MavenAll:2021.8.27.1'
 ~~~
 
 或者
@@ -24,7 +24,10 @@ implementation 'com.yanyi.benyanyi:MavenAll:2021.2.27.1'
 <dependency>
   <groupId>com.yanyi.benyanyi</groupId>
   <artifactId>MavenAll</artifactId>
-  <version>2021.2.27.1</version>
+  <version>2021.8.27.1</version>
   <type>aar</type>
 </dependency>
-~~~
+~~~
+
+## 更新记录
+* 2021-08-27 提交2021.8.27.1版本,升级jar包,修改maven地址

+ 2 - 2
app/build.gradle

@@ -31,9 +31,9 @@ android {
 dependencies {
 
     implementation 'androidx.appcompat:appcompat:1.2.0'
-    implementation 'com.google.android.material:material:1.2.1'
+    implementation 'com.google.android.material:material:1.3.0'
     implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
-    testImplementation 'junit:junit:4.+'
+    testImplementation 'junit:junit:4.13.2'
     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
 }

+ 3 - 3
build.gradle

@@ -3,10 +3,10 @@ buildscript {
     repositories {
         google()
         jcenter()
-        maven { url 'http://maven.benyanyi.com/nexus/content/repositories/mylove/' }
+        maven { url 'http://maven.keleyanyi.com/repository/benyanyi/' }
     }
     dependencies {
-        classpath "com.android.tools.build:gradle:4.1.2"
+        classpath 'com.android.tools.build:gradle:4.1.3'
 
         // NOTE: Do not place your application dependencies here; they belong
         // in the individual module build.gradle files
@@ -17,7 +17,7 @@ allprojects {
     repositories {
         google()
         jcenter()
-        maven { url 'http://maven.benyanyi.com/nexus/content/repositories/mylove/' }
+        maven { url 'http://maven.keleyanyi.com/repository/benyanyi/' }
         //解决中文乱码问题
         tasks.withType(Javadoc) { //兼容中文
             options.addStringOption('Xdoclint:none', '-quiet')