-
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.
Incremental annotation processor (#136)
* Incremental annotation processor * Fix annotation retention to class
- Loading branch information
Showing
117 changed files
with
2,050 additions
and
1,770 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,4 +1,4 @@ | ||
VERSION_NAME=1.4.0 | ||
VERSION_NAME=1.5.0 | ||
GROUP=com.airbnb.android | ||
POM_DESCRIPTION=Paris is a system for creating and applying styles to views in Android. | ||
POM_URL=https://github.com/airbnb/paris | ||
|
@@ -14,4 +14,8 @@ [email protected] | |
POM_INCEPTION_YEAR=2017 | ||
|
||
android.useAndroidX=true | ||
org.gradle.configureondemand=false | ||
org.gradle.parallel=true | ||
org.gradle.incremental=true | ||
org.gradle.configureondemand=true | ||
org.gradle.daemon=true | ||
kotlin.incremental=true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
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,11 +1,10 @@ | ||
apply plugin: 'java' | ||
apply plugin: 'kotlin' | ||
apply plugin: "com.vanniktech.maven.publish" | ||
|
||
sourceCompatibility = rootProject.JAVA_SOURCE_VERSION | ||
targetCompatibility = rootProject.JAVA_TARGET_VERSION | ||
|
||
dependencies { | ||
implementation deps.kotlin | ||
} | ||
|
||
apply from: rootProject.file('gradle/gradle-maven-push.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
2 changes: 1 addition & 1 deletion
2
paris-annotations/src/main/java/com/airbnb/paris/annotations/GeneratedStyleableClass.kt
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.