buildscript { repositories { mavenCentral() jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:3.2.1' } } allprojects { repositories { jcenter() google() } } apply plugin: 'com.android.application' android { compileSdkVersion 28 buildToolsVersion "28.0.3" lintOptions { abortOnError false } defaultConfig { applicationId "fr.unix_experience.owncloud_sms" versionCode 70 versionName "2.0.6" minSdkVersion 16 targetSdkVersion 28 maxSdkVersion 28 ndk { // Specifies the ABI configurations of your native // libraries Gradle should build and package with your APK. abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'arm64-v8a', 'mips', 'mips64' } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } packagingOptions { exclude 'META-INF/LICENSE.txt' } } repositories { maven { url "https://jitpack.io" } mavenCentral() google() } dependencies { implementation 'com.android.support:support-v13:28.0.0' implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support:design:28.0.0' implementation 'in.srain.cube:ultra-ptr:1.0.11' implementation 'com.github.dmytrodanylyk.android-process-button:library:1.0.4' implementation 'com.android.support:support-v4:28.0.0' implementation project(':ncsmsgo') }