diff options
author | zeapo <mohamed@zenadi.com> | 2014-10-19 12:56:52 +0200 |
---|---|---|
committer | zeapo <mohamed@zenadi.com> | 2014-10-19 12:56:52 +0200 |
commit | b8b5234e5bbef024ca25c63a8882a4d677778e6c (patch) | |
tree | e6c618d2af3386a3c68745b9a2c0f60e3477c7bc /app/build.gradle | |
parent | 524c9205c08615ce6399361303b411975c08c0f8 (diff) |
First shot on Material design (prefrences not working)
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle index e053108f..059ed531 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,14 +3,14 @@ apply from: 'copyLibs.gradle' // enable 'copyLibs.gradle' script plugin apply plugin: 'eclipse' android { - compileSdkVersion 19 - buildToolsVersion "19.1.0" + compileSdkVersion 21 + buildToolsVersion "21.0.1" defaultConfig { applicationId "com.zeapo.pwdstore" minSdkVersion 15 - targetSdkVersion 19 - versionCode 15 - versionName "1.1-b8" + targetSdkVersion 21 + versionCode 16 + versionName "1.2-b1" } buildTypes { release { @@ -29,6 +29,8 @@ repositories { } dependencies { + compile "com.android.support:appcompat-v7:21.+" + //compile fileTree(dir: 'libs', include: ['*.jar']) compile project(':libraries:openpgp-api-lib') compile 'org.eclipse.jgit:org.eclipse.jgit:3.5.+' |