This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🌞 Morning 117 commits ███████▎░░░░░░░░░░░░░ 34.8% | |
🌆 Daytime 74 commits ████▌░░░░░░░░░░░░░░░░ 22.0% | |
🌃 Evening 15 commits ▉░░░░░░░░░░░░░░░░░░░░ 4.5% | |
🌙 Night 130 commits ████████▏░░░░░░░░░░░░ 38.7% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aliases: | |
# Cache Management | |
- &restore-yarn-cache | |
keys: | |
- yarn-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }} | |
# Fallback in case checksum fails | |
- yarn-{{ arch }}-{{ .Branch }}- | |
# Fallback in case this is a first-time run on a fork | |
- yarn-{{ arch }}-master- | |
- &save-yarn-cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
android: | |
working_directory: ~/project | |
environment: | |
GRADLE_PROPERTIES_URL: https://www.dropbox.com/s/..../gradle.properties?dl=0 | |
KEYSTORE_DOWNLOAD_URL: https://www.dropbox.com/s/..../my-release-key.keystore?dl=0 | |
docker: | |
- image: circleci/android:api-27-node8-alpha |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
android: | |
working_directory: ~/project | |
docker: | |
- image: circleci/android:api-27-node8-alpha | |
steps: | |
- checkout: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.... | |
desc "Submit a new Beta Build to crashlytics" | |
desc "This will also make sure the profile is up to date" | |
lane :beta do |values| | |
# Before calling match, we make sure all our devices are registered on the Apple Developer Portal | |
create_keychain( | |
name: ENV["MATCH_KEYCHAIN_NAME"], | |
password: ENV["MATCH_KEYCHAIN_PASSWORD"], | |
default_keychain: true, | |
unlock: true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cache: | |
yarn: true | |
directories: | |
- $HOME/.yarn-cache | |
- $HOME/.gradle/caches/ | |
- $HOME/.gradle/wrapper/ | |
- node_modules | |
branches: | |
only: | |
- beta |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git_url "[email protected]:***/certificates.git" # ssh key | |
type "development" # The default type, can be: appstore, adhoc, enterprise or development | |
app_identifier "com.kangsta.smapleApp" | |
username "tj@***.com" # Your Apple Developer Portal username |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desc "Submit a new Beta Build to Crashlytics Beta" | |
lane :beta do |values| | |
# Adjust the `build_type` and `flavor` params as needed to build the right APK for your setup | |
emails = values[:test_email] ? values[:test_email] : ['[email protected]'] # You can list more emails here | |
groups = values[:test_email] ? nil : nil # You can define groups on the web and reference them here | |
gradle( | |
task: "assembleRelease", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
..... | |
buildTypes { | |
release { | |
minifyEnabled enableProguardInReleaseBuilds | |
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" | |
signingConfig signingConfigs.release | |
} | |
} | |
....... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: android | |
jdk: oraclejdk8 | |
sudo: required | |
dist: precise | |
before_cache: | |
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock | |
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/ | |
cache: | |
yarn: true | |
directories: |
NewerOlder