Skip to content

Commit

Permalink
prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ira committed Mar 28, 2017
1 parent eec3592 commit 29e4f7f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.android.tools.build:gradle:2.2.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
11 changes: 10 additions & 1 deletion demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
buildToolsVersion '25.0.2'

defaultConfig {
applicationId "com.yalantis.jellyanimation.demo"
Expand All @@ -12,10 +12,19 @@ android {
versionName "1.0"

}
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_KEYSTORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS_NAME
keyPassword RELEASE_KEY_ALIAS_PASSWORD
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
}
}
Expand Down
Binary file added demo/keys/release.jks
Binary file not shown.
4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ org.gradle.jvmargs=-Xmx1536m
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
RELEASE_STORE_FILE=keys/release.jks
RELEASE_KEYSTORE_PASSWORD=jellytoolbar
RELEASE_KEY_ALIAS_NAME=android
RELEASE_KEY_ALIAS_PASSWORD=jellytoolbar
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
buildToolsVersion '25.0.2'
defaultConfig {
minSdkVersion 16
targetSdkVersion 24
Expand Down

0 comments on commit 29e4f7f

Please sign in to comment.