| 123456789101112131415161718192021222324252627282930313233343536 |
- apply plugin: 'com.android.library'
- apply plugin: 'com.github.dcendents.android-maven'
- group = 'com.github.pedroSG94'
- android {
- compileSdkVersion 27
- buildToolsVersion "27.0.3"
- defaultConfig {
- minSdkVersion 9
- targetSdkVersion 27
- versionCode 1
- versionName "2.5.14"
- sourceSets.main {
- jni.srcDirs = []
- jniLibs.srcDir "src/main/jniLibs"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_7
- targetCompatibility JavaVersion.VERSION_1_7
- }
- }
- dependencies {
- implementation "com.android.support:support-annotations:${supportLibVersion}"
- }
|