add library

This commit is contained in:
2021-03-01 10:01:53 +08:00
parent 67727032eb
commit b50f6d22e4
77 changed files with 3596 additions and 0 deletions

31
library/build.gradle Normal file
View File

@@ -0,0 +1,31 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 30
buildToolsVersion = '30.0.3'
defaultConfig {
minSdkVersion 16
targetSdkVersion 30
versionCode 106
versionName "7.6.0"
}
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "androidx.core:core-ktx:1.3.2"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
//apply from: '../gradle/build_upload.gradle'