12345678910111213141516171819202122232425262728293031323334353637 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 32
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 32
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.3.0-alpha02'//1.1.0
- implementation 'com.google.android.material:material:1.1.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
- implementation 'com.alibaba:fastjson:1.1.55.android'
- }
|