-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* KSP support * many things converted, need to fix javac specifics * checks all pass * Update r finder and package config * fix package info resources causing failed tests (from bad previous refactor) * extract resource scanner interface * implement KspResourceScanner without testing * Create shared abstract processor class for javac and ksp * set up ksp plugin * upgrade to agp 7.0.1 * before renaming attr argument from value * ksp resource processor working, bug some ksp bugs prevent compilation * project compiles with ksp, fixed property naming generation * kotlin compile testing set up, not all tests migrate * move test resources to input/output * fix test names * Fix comments formatting * Fix including parameter name in java resource * Fix attrs test * fix java getter field in ksp * Update more tests * processor tests all pass with ksp testing * Try to make extensions test, not yet working * extensions kapt test passes * fix companion object as bad key of type elements * fix double parens, all tests pass * add more style extensions tests * remove deprecated asynctask * bump version * fix type element formatting * Clean up * Fix originating elements and clean up * checks all pass * Bump version to airbnb5 * revert compile version bump * Workaround protected visibility override bug * Improve logging details * Support type aliased imports * Clean up * travis to java 11 * update travis config * fix connected tests * ignore drawable comparisons * fix originating elements * fix typealias matching * fix fully qualified r import * improve error messaging * add option for aggregateStyleablesOnClassPath * Adding timing logs * update docs and dependencies
- Loading branch information
Showing
162 changed files
with
3,060 additions
and
1,166 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,29 +1,52 @@ | ||
language: android | ||
|
||
android: | ||
components: | ||
- tools | ||
- platform-tools | ||
- build-tools-28.0.3 | ||
- build-tools-29.0.2 | ||
- android-28 | ||
- extra-google-google_play_services | ||
- extra-android-m2repository | ||
- extra-google-m2repository | ||
|
||
jdk: | ||
- oraclejdk8 | ||
jdk: oraclejdk11 | ||
|
||
branches: | ||
except: | ||
- gh-pages | ||
- gh-pages | ||
|
||
notifications: | ||
email: false | ||
|
||
script: "./gradlew check" | ||
env: | ||
global: | ||
- ADB_INSTALL_TIMEOUT=8 | ||
|
||
android: | ||
licenses: | ||
- 'android-sdk-preview-license-.+' | ||
- 'android-sdk-license-.+' | ||
- 'google-gdk-license-.+' | ||
components: | ||
- tools | ||
- platform-tools | ||
- build-tools-30.0.2 | ||
- android-21 | ||
- android-28 | ||
- android-29 | ||
- android-30 | ||
- extra-google-google_play_services | ||
- extra-android-m2repository | ||
- extra-google-m2repository | ||
- sys-img-armeabi-v7a-android-21 | ||
|
||
before_install: | ||
- mkdir "$ANDROID_HOME/licenses" || true | ||
- echo "24333f8a63b6825ea9c5514f83c2829b004d1fee" > "$ANDROID_HOME/licenses/android-sdk-license" | ||
|
||
before_script: | ||
- android list targets | ||
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a | ||
- emulator -avd test -no-skin -no-window & | ||
- android-wait-for-emulator | ||
- adb shell input keyevent 82 & | ||
- adb shell settings put secure long_press_timeout 1500 | ||
|
||
script: | ||
- ./gradlew check --stacktrace | ||
- ./gradlew connectedDebugAndroidTest --stacktrace | ||
|
||
cache: | ||
directories: | ||
- $HOME/.m2 | ||
- $HOME/.gradle | ||
- $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
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
Binary file not shown.
Binary file not shown.
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
Oops, something went wrong.