Skip to content

Commit

Permalink
1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kongzue committed Jul 4, 2022
1 parent 492959f commit 49ef0c9
Show file tree
Hide file tree
Showing 29 changed files with 2 additions and 25 deletions.
Binary file removed .gradle/6.1.1/executionHistory/executionHistory.bin
Binary file not shown.
Binary file removed .gradle/6.1.1/executionHistory/executionHistory.lock
Binary file not shown.
Binary file removed .gradle/6.1.1/fileChanges/last-build.bin
Binary file not shown.
Binary file removed .gradle/6.1.1/fileContent/fileContent.lock
Binary file not shown.
Binary file removed .gradle/6.1.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file removed .gradle/6.1.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file removed .gradle/6.1.1/fileHashes/resourceHashesCache.bin
Binary file not shown.
Empty file removed .gradle/6.1.1/gc.properties
Empty file.
Binary file removed .gradle/6.1.1/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file removed .gradle/6.1.1/javaCompile/jarAnalysis.bin
Binary file not shown.
Binary file removed .gradle/6.1.1/javaCompile/javaCompile.lock
Binary file not shown.
Binary file removed .gradle/6.1.1/javaCompile/taskHistory.bin
Binary file not shown.
Binary file removed .gradle/6.5/executionHistory/executionHistory.bin
Binary file not shown.
Binary file removed .gradle/6.5/executionHistory/executionHistory.lock
Binary file not shown.
Binary file removed .gradle/6.5/fileChanges/last-build.bin
Binary file not shown.
Binary file removed .gradle/6.5/fileContent/fileContent.lock
Binary file not shown.
Binary file removed .gradle/6.5/fileHashes/fileHashes.bin
Binary file not shown.
Binary file removed .gradle/6.5/fileHashes/fileHashes.lock
Binary file not shown.
Binary file removed .gradle/6.5/fileHashes/resourceHashesCache.bin
Binary file not shown.
Empty file removed .gradle/6.5/gc.properties
Empty file.
Binary file removed .gradle/6.5/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file removed .gradle/6.5/javaCompile/jarAnalysis.bin
Binary file not shown.
Binary file removed .gradle/6.5/javaCompile/javaCompile.lock
Binary file not shown.
Binary file removed .gradle/6.5/javaCompile/taskHistory.bin
Binary file not shown.
Binary file modified .gradle/6.7.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified .gradle/checksums/checksums.lock
Binary file not shown.
Binary file modified .gradle/checksums/sha1-checksums.bin
Binary file not shown.
27 changes: 2 additions & 25 deletions basejson/build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
apply plugin: 'com.android.library'
apply plugin: 'android-maven'

def siteUrl = 'https://github.com/kongzue/BaseJson' //项目在github主页地址
def gitUrl = 'https://github.com/kongzue/BaseJson.git' //Git仓库的地址

group = "com.kongzue.basejson"//发布aar前缀根节点
version = "1.0.7.2"//发布aar的库版本
android {
compileSdkVersion 30

defaultConfig {
minSdkVersion 14
targetSdkVersion 30
versionCode 7
versionName "1.0.7.2"
versionCode 8
versionName "1.0.8"
}

buildTypes {
Expand All @@ -22,23 +15,7 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}

artifacts {
archives sourcesJar
}
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

dependencies {

}

0 comments on commit 49ef0c9

Please sign in to comment.