Переглянути джерело

feature:zap日志模块修改ndk版本

#Suyghur 4 роки тому
батько
коміт
a9b8876243

+ 0 - 2
demo/build.gradle

@@ -74,7 +74,5 @@ android {
 dependencies {
 //    implementation project(':library_caps')
     implementation project(':library_zap')
-    implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.1"
-    implementation 'androidx.lifecycle:lifecycle-process:2.3.1'
 
 }

+ 2 - 6
library_zap/build.gradle

@@ -10,7 +10,6 @@ android {
     defaultConfig {
         minSdkVersion MIN_SDK_VERSION
         targetSdkVersion TARGET_SDK_VERSION
-        ndkVersion NDK_VERSION
 
         externalNativeBuild {
             cmake {
@@ -20,6 +19,8 @@ android {
         }
     }
 
+    ndkVersion NDK_VERSION
+
     buildTypes {
         release {
             minifyEnabled true
@@ -55,9 +56,4 @@ android {
 dependencies {
     implementation "org.jetbrains.kotlin:kotlin-stdlib:$KOTLIN_VERSION"
     implementation 'androidx.core:core-ktx:1.3.2'
-//    implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.1"
-//    implementation "androidx.lifecycle:lifecycle-extensions-ktx:1.0.1"
-    implementation 'androidx.fragment:fragment-ktx:1.3.2'
-    implementation 'androidx.lifecycle:lifecycle-process:2.3.1'
-
 }

+ 1 - 1
library_zap/src/main/java/com/suyghur/dolin/zap/impl/DateFileFormatter.kt

@@ -13,7 +13,7 @@ import java.util.*
  */
 class DateFileFormatter : IFormatter {
 
-    private val pattern = "yyy-MM-dd HH:mm:ss"
+    private val pattern = "yyyy-MM-dd HH:mm:ss"
     private var simpleDateFormat: SimpleDateFormat = SimpleDateFormat(pattern, Locale.getDefault())
     private var date: Date
     private var lastDateFormatted = ""