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.
36 lines
792 B
36 lines
792 B
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdk 34
|
|
buildToolsVersion "34.0.0"
|
|
|
|
defaultConfig {
|
|
applicationId "net.micode.notes"
|
|
minSdk 14
|
|
targetSdk 34
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
compileOptions {
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
packagingOptions{
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'D:\\Android Studio\\Notes-master\\httpcomponents-client-4.5.14-bin\\lib', include: ['*.aar', '*.jar'], exclude: ['commons-codec-1.11.jar','httpclient-cache-4.5.14.jar','httpclient-osgi-4.5.14.jar'])
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|