We are now using AppCompat and support Material

This commit is contained in:
Alexandros Schillings
2015-07-13 16:04:39 +01:00
parent 262fa72910
commit ab6997b5af
17 changed files with 115 additions and 78 deletions
+14 -5
View File
@@ -8,6 +8,20 @@ final def androidVersionCode = 100
final def targetSdk = rootProject.targetSdkVersion;
final def minSdkRed = rootProject.minSdkVersion;
repositories {
maven {
url "https://repo.commonsware.com.s3.amazonaws.com"
}
}
dependencies {
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.commonsware.cwac:merge:1.1.0'
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':library')
}
android {
compileSdkVersion rootProject.compileSdkVersion
buildToolsVersion rootProject.buildToolsVersion
@@ -33,8 +47,3 @@ android {
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':library')
}