AndroidNetTools/app/build.gradle

44 lines
1.2 KiB
Groovy
Raw Normal View History

2024-02-28 16:23:48 +08:00
plugins {
id 'com.android.application'
}
android {
namespace 'com.yutou.nettools'
compileSdk 34
defaultConfig {
applicationId "com.yutou.nettools"
minSdk 28
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
2024-03-04 15:10:37 +08:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2024-02-28 16:23:48 +08:00
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
2024-03-04 15:10:37 +08:00
implementation project(path:":netlibs")
api 'com.squareup.okhttp3:okhttp:3.14.9'
api 'com.squareup.retrofit2:retrofit:2.3.0'
api 'com.alibaba.fastjson2:fastjson2:2.0.47'
2024-02-28 16:23:48 +08:00
}