Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto transform #5221

Open
wants to merge 34 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
e09b2a5
update
VinayGuthal Jul 25, 2023
a6af717
update
VinayGuthal Jul 25, 2023
e9c40f8
update
VinayGuthal Aug 1, 2023
ccb83b9
update
VinayGuthal Aug 2, 2023
5cce3b0
add files
VinayGuthal Aug 2, 2023
d54da7c
update
VinayGuthal Aug 2, 2023
92c43b5
update
VinayGuthal Aug 8, 2023
aeef091
update manifest file as well
VinayGuthal Aug 8, 2023
0d291c9
update manifest file as well
VinayGuthal Aug 8, 2023
f35e14e
update ktx source code
VinayGuthal Aug 8, 2023
df0b99a
update
VinayGuthal Aug 8, 2023
c4d5fbe
update
VinayGuthal Aug 8, 2023
8444cde
remove
VinayGuthal Aug 8, 2023
132d7d1
update
VinayGuthal Aug 8, 2023
e737bac
Merge branch 'master' into auto_transform
VinayGuthal Aug 8, 2023
4f34e82
update
VinayGuthal Aug 8, 2023
59850f6
package transform complete
VinayGuthal Aug 9, 2023
53b4c6d
update
VinayGuthal Aug 9, 2023
9b066fb
modernize firebase common
VinayGuthal Aug 9, 2023
43eb768
ktfmtformat
VinayGuthal Aug 9, 2023
09ae515
update
VinayGuthal Aug 9, 2023
1809cc3
working for dependency
VinayGuthal Aug 9, 2023
6751b29
update
VinayGuthal Aug 9, 2023
78e9f35
update code
VinayGuthal Aug 10, 2023
3b97320
update
VinayGuthal Aug 10, 2023
c9cba8c
update packaging
VinayGuthal Aug 10, 2023
2d5a375
update
VinayGuthal Aug 10, 2023
843f727
update
VinayGuthal Aug 15, 2023
ac0611c
small update
VinayGuthal Aug 15, 2023
5b8b8b0
upgrade protobuf
VinayGuthal Aug 15, 2023
14f219e
update
VinayGuthal Aug 16, 2023
cb28d6a
component runtime
VinayGuthal Aug 17, 2023
f2ce0ce
update script
VinayGuthal Aug 22, 2023
af9ca1d
update code
VinayGuthal Aug 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ buildscript {
}

dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.2'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:1.3.0'
classpath 'gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.9'
classpath 'com.google.gms:google-services:4.3.15'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,18 @@ class FirebaseLibraryPlugin : BaseFirebaseLibraryPlugin() {
setupStaticAnalysis(project, firebaseLibrary)
getIsPomValidTask(project, firebaseLibrary)
getSemverTaskAar(project, firebaseLibrary)
getPackageTransform(project, firebaseLibrary)
configurePublishing(project, firebaseLibrary, android)
}

private fun getPackageTransform(project: Project, firebaseLibrary: FirebaseLibraryExtension) {
project.tasks.register<PackageTransform>("packageTransform") {
groupId.set(firebaseLibrary.groupId.get())
artifactId.set(firebaseLibrary.artifactId.get())
projectPath.set(project.projectDir.absolutePath)
}
}

private fun getSemverTaskAar(project: Project, firebaseLibrary: FirebaseLibraryExtension) {
project.mkdir("semver")
project.tasks.register<GmavenCopier>("copyPreviousArtifacts") {
Expand Down
Loading
Loading