You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
476 B
25 lines
476 B
2 years ago
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 31
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 19
|
||
|
targetSdkVersion 31
|
||
|
versionName "5.2.1.55"
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
manifest.srcFile 'AndroidManifest.xml'
|
||
|
res.srcDirs = ['res']
|
||
|
jniLibs.srcDirs = ['libs']
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api fileTree(dir: 'libs', include: ['*.jar','*.aar'])
|
||
|
api 'com.google.code.gson:gson:2.8.6'
|
||
|
}
|