remove obsolete config files
This commit is contained in:
parent
21a817a8d4
commit
96826bd9eb
|
@ -1,62 +0,0 @@
|
|||
version: 2
|
||||
machine:
|
||||
environment:
|
||||
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
|
||||
jobs:
|
||||
test:
|
||||
working_directory: ~/code
|
||||
docker:
|
||||
- image: circleci/android:api-27-alpha
|
||||
environment:
|
||||
JVM_OPTS: -Xmx3200m
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
|
||||
# - run:
|
||||
# name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
|
||||
# command: sudo chmod +x ./gradlew
|
||||
- run:
|
||||
name: Download Dependencies
|
||||
command: ./gradlew androidDependencies
|
||||
- save_cache:
|
||||
paths:
|
||||
- ~/.gradle
|
||||
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
|
||||
- run:
|
||||
name: Run Tests
|
||||
command: ./gradlew --no-daemon test
|
||||
- store_artifacts:
|
||||
path: app/build/reports
|
||||
destination: reports
|
||||
- store_test_results:
|
||||
path: app/build/test-results
|
||||
build:
|
||||
working_directory: ~/code
|
||||
docker:
|
||||
- image: circleci/android:api-27-alpha
|
||||
environment:
|
||||
JVM_OPTS: -Xmx3200m
|
||||
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx3200m -XX:+HeapDumpOnOutOfMemoryError"'
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
|
||||
- run:
|
||||
name: Build apk
|
||||
command: |
|
||||
./gradlew assembleBlueRelease --no-daemon --stacktrace
|
||||
/opt/android/sdk/build-tools/27.0.3/zipalign -v -p 4 app/build/outputs/apk/blue/release/app-blue-release-unsigned.apk app-blue-release-aligned.apk
|
||||
keytool -genkey -v -keystore debug.keystore -alias androiddebugkey -storepass android -keypass android -keyalg RSA -dname "C=US, O=Android, CN=Android Debug"
|
||||
/opt/android/sdk/build-tools/27.0.3/apksigner sign --ks debug.keystore --out app-blue-release.apk --ks-pass pass:android app-blue-release-aligned.apk
|
||||
- store_artifacts:
|
||||
path: app-blue-release.apk
|
||||
destination: app-blue-release.apk
|
||||
workflows:
|
||||
version: 2
|
||||
test-and-build:
|
||||
jobs:
|
||||
- test
|
||||
- build:
|
||||
requires:
|
||||
- test
|
14
crowdin.yml
14
crowdin.yml
|
@ -1,14 +0,0 @@
|
|||
files:
|
||||
- source: /app/src/main/res/values/strings.xml
|
||||
translation: /app/src/main/res/values-%two_letters_code%/%original_file_name%
|
||||
update_option: update_without_changes
|
||||
languages_mapping:
|
||||
two_letters_code:
|
||||
zh-TW: zh-rTW
|
||||
zh-CN: zh-rCN
|
||||
zh-HK: zh-rHK
|
||||
zh-MO: zh-rMO
|
||||
zh-SG: zh-rSG
|
||||
pt-BR: pt-rBR
|
||||
sv-SE: sv
|
||||
|
Loading…
Reference in New Issue