Skip to content

Commit

Permalink
modify keys
Browse files Browse the repository at this point in the history
  • Loading branch information
tttakaoka committed Apr 22, 2016
1 parent 03f836e commit 9b90bd7
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
#

VERSION_CODE=50403
GROUP=com.github.amlcurran.showcaseview
GROUP=com.github.tttakaoka.showcaseview

POM_DESCRIPTION=Highlight the best bits of your app to users quickly, simply, and cool...ly
POM_URL=https://github.com/amlcurran/ShowcaseView
POM_SCM_URL=https://github.com/amlcurran/ShowcaseView
POM_SCM_CONNECTION=scm:[email protected]:amlcurran/ShowcaseView.git
POM_SCM_DEV_CONNECTION=scm:[email protected]:amlcurran/ShowcaseView.git
POM_URL=https://github.com/tttakaoka/ShowcaseView
POM_SCM_URL=https://github.com/tttakaoka/ShowcaseView
POM_SCM_CONNECTION=scm:[email protected]:tttakaoka/ShowcaseView.git
POM_SCM_DEV_CONNECTION=scm:[email protected]:tttakaoka/ShowcaseView.git
POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
Expand Down
2 changes: 1 addition & 1 deletion release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ task createGithubRelease(type: Exec) {
tag_name: "$versionName",
name : "$versionName",
draft : true])
commandLine "curl", "--data", jsonData, "-u", "amlcurran:" + System.getenv('GITHUB_TOKEN'), "https://api.github.com/repos/amlcurran/ShowcaseView/releases"
commandLine "curl", "--data", jsonData, "-u", "tttakaoka:" + System.getenv('GITHUB_TOKEN'), "https://api.github.com/repos/tttakaoka/ShowcaseView/releases"
}


Expand Down
36 changes: 18 additions & 18 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,24 @@ android {
minSdkVersion Integer.parseInt(MIN_SDK_SAMPLE)
}

// signingConfigs {
// release {
// storeFile file(project.hasProperty("SHOWCASEVIEW_KEYSTORE_LOCATION") ? SHOWCASEVIEW_KEYSTORE_LOCATION : "/Users/amlcurran/.android/debug.keystore")
// storePassword returnDefault("SHOWCASEVIEW_KEYSTORE_PW")
// keyAlias returnDefault("SHOWCASEVIEW_KEY_ALIAS")
// keyPassword returnDefault("SHOWCASEVIEW_KEY_PW")
// }
// }
//
// lintOptions {
// abortOnError false
// }
//
// buildTypes {
// release {
// signingConfig signingConfigs.release
// }
// }
signingConfigs {
release {
storeFile file(project.hasProperty("SHOWCASEVIEW_KEYSTORE_LOCATION") ? SHOWCASEVIEW_KEYSTORE_LOCATION : "/Users/takaoka/.android/debug.keystore")
storePassword returnDefault("SHOWCASEVIEW_KEYSTORE_PW")
keyAlias returnDefault("SHOWCASEVIEW_KEY_ALIAS")
keyPassword returnDefault("SHOWCASEVIEW_KEY_PW")
}
}

lintOptions {
abortOnError false
}

buildTypes {
release {
signingConfig signingConfigs.release
}
}
}

def returnDefault(String propertyName) {
Expand Down

0 comments on commit 9b90bd7

Please sign in to comment.