123456789101112131415161718192021222324252627282930313233343536373839404142 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 32
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 22
- versionCode 4
- versionName "1.4"
- ndk {
- abiFilters "armeabi-v7a"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- repositories {
- flatDir {
- dirs 'libs'
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.0'
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- implementation 'com.google.android.material:material:1.0.0'
- implementation 'androidx.navigation:navigation-fragment:2.1.0'
- implementation 'androidx.navigation:navigation-ui:2.1.0'
- implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
- testImplementation 'junit:junit:4.+'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- implementation(name: 'communication-release', ext: 'aar')
- implementation(name: 'MultiReaderLib-release', ext: 'aar')
- implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
- }
|