diff options
author | Jeremy Klein <jlklein@google.com> | 2015-07-15 13:31:45 -0700 |
---|---|---|
committer | Jeremy Klein <jlklein@google.com> | 2015-07-15 14:24:10 -0700 |
commit | cabd426608f2c6776ecd1ef2ac0053dcc352adbc (patch) | |
tree | 9d0c6458577f7c6752dbc47482cc06dfe4c7d042 /app/build.gradle | |
parent | f688ba9d4c3d63e68267518f1d0773fcfb919085 (diff) | |
download | connectbot-cabd426608f2c6776ecd1ef2ac0053dcc352adbc.tar.gz connectbot-cabd426608f2c6776ecd1ef2ac0053dcc352adbc.tar.bz2 connectbot-cabd426608f2c6776ecd1ef2ac0053dcc352adbc.zip |
Add the v4 support library and update the notification API.
Switch to using NotificationCompat.Builder. This will allow for
the creation of a "disconnect all" button in the notification
(see #93).
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index d3da188..ad8ba26 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,13 +4,13 @@ apply from: '../config/quality.gradle' apply from: '../config/translations.gradle' android { - compileSdkVersion 20 - buildToolsVersion "20.0.0" + compileSdkVersion 22 + buildToolsVersion "21.0.0" defaultConfig { applicationId "org.connectbot" minSdkVersion 4 - targetSdkVersion 15 + targetSdkVersion 22 compileOptions { sourceCompatibility JavaVersion.VERSION_1_5 targetCompatibility JavaVersion.VERSION_1_5 @@ -34,6 +34,10 @@ android { release } + dependencies { + compile "com.android.support:support-v4:22.0.+" + } + buildTypes { release { minifyEnabled true |