| 123456789101112131415161718192021222324 |
- apply plugin: 'com.android.library'
- apply plugin: 'com.github.dcendents.android-maven'
- group = 'com.github.pedroSG94'
- android {
- compileSdkVersion versionCompiler
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion versionTarget
- versionCode 161
- versionName "1.6.1"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- api 'androidx.annotation:annotation:1.1.0'
- }
|