1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2026-08-26 07:30:21 +00:00

Add a more stylized button for creating account

This commit is contained in:
Loic Blot
2016-01-31 01:05:25 +01:00
parent 7e87253d5f
commit b98758cff3
5 changed files with 40 additions and 14 deletions
+16 -3
View File
@@ -1,13 +1,14 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
compileSdkVersion 23
buildToolsVersion "22.0.1"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "fr.unix_experience.owncloud_sms"
minSdkVersion 14
targetSdkVersion 22
targetSdkVersion 23
}
buildTypes {
@@ -18,8 +19,20 @@ android {
}
}
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
dependencies {
compile project(':owncloudAndroidLibrary')
compile project(':nrzandroidlib')
compile files('libs/android-support-v13.jar')
compile 'com.android.support:support-v13:23.+'
compile 'com.android.support:appcompat-v7:23.+'
compile 'com.github.florent37:materialtextfield:1.0.1@aar'
compile 'com.android.support:cardview-v7:23.+'
compile 'com.nineoldandroids:library:2.4.0'
compile 'in.srain.cube:ultra-ptr:1.0.11'
compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.4'
}