-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from sephiroth74/feature/update_text_and_posi…
…tion Feature/update text and position
- Loading branch information
Showing
20 changed files
with
421 additions
and
269 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,36 @@ | ||
language: android | ||
|
||
jdk: | ||
- oraclejdk8 | ||
|
||
env: | ||
global: | ||
# install timeout in minutes (2 minutes by default) | ||
- ADB_INSTALL_TIMEOUT=16 | ||
- oraclejdk8 | ||
|
||
android: | ||
components: | ||
- tools | ||
- tools | ||
- build-tools-28.0.3 | ||
- android-25 | ||
- extra-android-m2repository | ||
- extra-android-suppor | ||
- add-on | ||
- extra | ||
|
||
licenses: | ||
- 'android-sdk-license-.+' | ||
- 'android-sdk-preview-license-.+' | ||
- 'google-gdk-license-.+' | ||
- 'intel-android-extra-license-.+' | ||
- 'google-gdk-license-.+' | ||
- 'android-googletv-license-.+' | ||
|
||
notifications: | ||
email: | ||
- [email protected] | ||
- platform-tools | ||
|
||
before_install: | ||
before_script: | ||
- mkdir "$ANDROID_HOME/licenses" || true | ||
- echo "d56f5187479451eabf01fb78af6dfcb131a6481e" > "$ANDROID_HOME/licenses/android-sdk-license" | ||
- sdkmanager tools | ||
- sdkmanager --update | ||
- sdkmanager emulator | ||
- sdkmanager "system-images;android-25;google_apis;armeabi-v7a" | ||
- sdkmanager --update | ||
- echo no | avdmanager create avd --force -n test -k "system-images;android-25;google_apis;armeabi-v7a" --device "pixel" | ||
- echo "24333f8a63b6825ea9c5514f83c2829b004d1fee" > "$ANDROID_HOME/licenses/android-sdk-license" | ||
|
||
before_script: | ||
# - $ANDROID_HOME/emulator/emulator -avd test -no-audio -skin 1440x2560 & | ||
# - $ANDROID_HOME/emulator/emulator -avd test -gpu swiftshader_indirect -no-audio -no-window -verbose & | ||
# - android-wait-for-emulator | ||
# - adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed) ]]; do sleep 1; done; input keyevent 82' | ||
before_install: | ||
- yes | sdkmanager "platforms;android-28" | ||
|
||
script: | ||
- adb logcat > logcat.log & | ||
- ./gradlew clean build lint assemble | ||
# - ./gradlew app:connectedCheck | ||
notifications: | ||
email: | ||
- [email protected] | ||
|
||
after_script: | ||
- cat logcat.log | ||
cache: false | ||
sudo: false | ||
|
||
after_failure: | ||
- cat logcat.log | ||
install: | ||
- chmod +x ./gradlew; ls -l gradlew; ./gradlew wrapper -v | ||
|
||
sudo: false | ||
script: | ||
- ./gradlew clean build lint assemble | ||
|
||
cache: | ||
directories: | ||
- $HOME/.m2 | ||
- $HOME/.gradle |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<set xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
android:interpolator="@android:interpolator/decelerate_quint" | ||
android:shareInterpolator="true"> | ||
|
||
<scale | ||
android:fromXScale="0.7" | ||
android:fromYScale="0.7" | ||
android:pivotX="50%" | ||
android:pivotY="50%" | ||
android:toXScale="1" | ||
android:toYScale="1" /> | ||
|
||
<alpha | ||
android:fromAlpha="0.0" | ||
android:toAlpha="1.0" /> | ||
</set> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<set xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:duration="@android:integer/config_shortAnimTime" | ||
android:interpolator="@android:interpolator/decelerate_quint" | ||
android:shareInterpolator="true"> | ||
|
||
<scale | ||
android:fromXScale="1" | ||
android:fromYScale="1" | ||
android:pivotX="50%" | ||
android:pivotY="50%" | ||
android:toXScale="0.7" | ||
android:toYScale="0.7" /> | ||
|
||
<alpha | ||
android:fromAlpha="1.0" | ||
android:toAlpha="0.0" /> | ||
</set> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Wed Jan 16 15:11:44 EST 2019 | ||
#Fri Jan 25 16:35:02 EST 2019 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1-milestone-1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip |
Oops, something went wrong.