mirror of
https://github.com/nerzhul/ownCloud-SMS-App.git
synced 2025-06-07 16:06:18 +00:00
73 lines
1.7 KiB
Groovy
73 lines
1.7 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.3.3'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion "26.0.1"
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "fr.unix_experience.owncloud_sms"
|
|
versionCode 54
|
|
versionName "1.2.1"
|
|
minSdkVersion 16
|
|
targetSdkVersion 26
|
|
maxSdkVersion 26
|
|
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'
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
cppFlags "-frtti -fexceptions -std=c++11"
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE.txt'
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path 'CMakeLists.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url "https://jitpack.io"
|
|
}
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile 'commons-httpclient:commons-httpclient:3.1'
|
|
compile 'com.android.support:support-v13:25.3.1'
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
compile 'com.android.support:design:25.3.1'
|
|
compile 'in.srain.cube:ultra-ptr:1.0.11'
|
|
compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.4'
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
}
|