Files
chao-ran-pdaclient/app/build.gradle

46 lines
925 B
Groovy
Raw Normal View History

2020-11-10 01:45:14 +08:00
plugins {
id 'com.android.application'
}
android {
compileSdkVersion 29
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.chaoran"
minSdkVersion 8
targetSdkVersion 15
versionCode 1
2021-01-15 13:47:15 +08:00
versionName "V1.078"
2020-11-10 01:45:14 +08:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2021-01-15 13:47:15 +08:00
//加载动态库
sourceSets{
main{
jniLibs.srcDir(['libs'])
}
}
2020-11-10 01:45:14 +08:00
}
dependencies {
2021-01-15 13:47:15 +08:00
//加载jar包
2020-11-10 01:45:14 +08:00
compile fileTree(dir: 'libs', include: ['*.jar'])
}