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.
39 lines
1.1 KiB
39 lines
1.1 KiB
plugins {
|
|
id("com.android.application")
|
|
}
|
|
|
|
android {
|
|
namespace "net.micode.notes"
|
|
compileSdk = 33
|
|
//buildToolsVersion "34.0.0"
|
|
|
|
defaultConfig {
|
|
applicationId "net.micode.notes"
|
|
|
|
minSdkVersion 14
|
|
targetSdkVersion 33
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
dependencies {
|
|
implementation files('D:/AndroidTools/AndroidProject/Notes-master1/gradle/httpcomponents-client-4.5.13/lib/httpclient-osgi-4.5.13.jar')
|
|
implementation files('D:/AndroidTools/AndroidProject/Notes-master1/gradle/httpcomponents-client-4.5.13/lib/httpclient-win-4.5.13.jar')
|
|
implementation files('D:/AndroidTools/AndroidProject/Notes-master1/gradle/httpcomponents-client-4.5.13/lib/httpcore-4.4.13.jar')
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
exclude 'META-INF/NOTICE'
|
|
exclude 'META-INF/LICENSE'
|
|
exclude 'META-INF/LICENSE.txt'
|
|
exclude 'META-INF/NOTICE.txt'
|
|
}
|
|
}
|
|
|