1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2026-08-26 15:40:27 +00:00

Add build.gradle, as requested by #82

This commit is contained in:
Loic Blot
2016-01-18 07:04:35 +01:00
parent b1d2093563
commit 7e87253d5f
9 changed files with 49 additions and 11 deletions
+25
View File
@@ -0,0 +1,25 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "fr.unix_experience.owncloud_sms"
minSdkVersion 14
targetSdkVersion 22
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile project(':owncloudAndroidLibrary')
compile project(':nrzandroidlib')
compile files('libs/android-support-v13.jar')
}