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.
35 lines
833 B
35 lines
833 B
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
namespace "net.micode.notes"
|
|
compileSdkVersion 33
|
|
buildToolsVersion "33.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "net.micode.notes"
|
|
minSdkVersion 14
|
|
targetSdkVersion 14
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
|
|
packagingOptions{
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: '/Users/xiaofeng/httpcomponents-client-4.5.14-bin/lib',
|
|
include: ['*.aar', '*.jar'],
|
|
exclude: ['commons-codec-1.11.jar','httpclient-4.5.14.jar','httpclient-cache-4.5.14.jar',
|
|
'fluent-hc-4.5.14.jar','httpmime-4.5.14.jar'])
|
|
}
|
|
|
|
|