12345678910111213141516171819202122232425262728293031323334 |
- 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'
- }
|