Skip to content

Commit

Permalink
build targetSdkVersion to latest: android-27 (8.1 Oreo)
Browse files Browse the repository at this point in the history
  • Loading branch information
eighthave committed May 28, 2019
1 parent 9322776 commit ad527da
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 9 additions & 9 deletions app/build.gradle
Expand Up @@ -19,24 +19,24 @@ def getVersionCode = { ->
def getVersionName = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'describe', '--tags', '--always'
standardOutput = stdout
commandLine 'git', 'describe', '--tags', '--always'
standardOutput = stdout
}
return stdout.toString().trim()
}

android {
compileSdkVersion 23
buildToolsVersion "24.0.0"
compileSdkVersion 27
buildToolsVersion "27.0.1"

aaptOptions {
cruncherEnabled = false
}

defaultConfig {
applicationId "info.guardianproject.ripple"
minSdkVersion 10
targetSdkVersion 23
minSdkVersion 14
targetSdkVersion 27
versionCode getVersionCode()
versionName getVersionName()
archivesBaseName = "Ripple-$versionName"
Expand All @@ -61,8 +61,8 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:appcompat-v7:27.1.1'
compile 'com.android.support:recyclerview-v7:27.1.1'
compile 'com.android.support:design:27.1.1'
compile 'info.guardianproject.panic:panic:0.5'
}
2 changes: 2 additions & 0 deletions build.gradle
@@ -1,6 +1,7 @@
buildscript {
repositories {
maven { url 'file:///usr/share/maven-repo' }
maven { url 'https://maven.google.com' }
jcenter()
}
dependencies {
Expand All @@ -11,6 +12,7 @@ buildscript {
allprojects {
repositories {
maven { url 'file:///usr/share/maven-repo' }
maven { url 'https://maven.google.com' }
jcenter()
}
}

0 comments on commit ad527da

Please sign in to comment.