-
Notifications
You must be signed in to change notification settings - Fork 36
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
Support bundling CLI and minor updates #22
Open
Goooler
wants to merge
34
commits into
DevSrSouza:master
Choose a base branch
from
Goooler:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
e90783d
Add GHA config
Goooler 00c2168
Fix IconWriter param
Goooler 0677f3c
Add renovate.json
renovate[bot] a9a14f8
Group AGP updates
Goooler 6d3814e
Update AGP to v27.2.2
renovate[bot] bd1e2df
Update dependency gradle to v8
renovate[bot] 4f5c5b7
Update plugin org.jetbrains.kotlin.jvm to v1.9.22
renovate[bot] 73d44ef
Use toolchain
Goooler 65ac31b
Update dependency com.google.guava:guava to v23.6.1-jre
renovate[bot] dff9177
Update dependency com.squareup:kotlinpoet to v1.16.0
renovate[bot] 7733414
Update dependency com.google.guava:guava to v33
renovate[bot] b101c2d
Update AGP to v31
renovate[bot] 3e1ef66
Fix Svg2Vector.parseSvgToXml
Goooler 790ecae
Bump JDK usages
Goooler f7a95e9
Tweaks
Goooler 223e713
Update wrapper files
Goooler 537ded8
Revert useJUnitPlatform
Goooler 70bae33
Update AGP to v31.3.0
renovate[bot] a903761
Update plugin org.jetbrains.kotlin.jvm to v1.9.23
renovate[bot] 20f2b2b
Update dependency gradle to v8.7
renovate[bot] cbbd85e
Update AGP to v31.3.1
renovate[bot] 3f24b27
Update dependency com.google.guava:guava to v33.1.0-jre
renovate[bot] ccb6049
Update AGP to v31.3.2
renovate[bot] 704cfe9
Update dependency com.google.guava:guava to v33.2.0-jre
renovate[bot] bf9bdd9
Update dependency gradle to v8.8
renovate[bot] cd8e9e8
Update dependency com.google.guava:guava to v33.2.1-jre
renovate[bot] b055d0b
Update dependency com.squareup:kotlinpoet to v1.18.0
renovate[bot] 1807e09
Update AGP to v31.5.1
renovate[bot] 630e610
Update dependency gradle to v8.9
renovate[bot] 82f8513
Update plugin org.jetbrains.kotlin.jvm to v2
renovate[bot] a9a77ff
Update dependency com.squareup:kotlinpoet to v1.18.1
renovate[bot] 6a61cbd
Support bundling CLI
Goooler 01e83ab
Update gradle/actions action to v4
renovate[bot] 316f8d8
Update dependency com.android.tools:r8 to v8.3.37
renovate[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Build | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, windows-latest ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 21 | ||
- uses: gradle/actions/setup-gradle@v4 | ||
- run: ./gradlew build | ||
- uses: actions/upload-artifact@v4 | ||
if: matrix.os == 'ubuntu-latest' | ||
with: | ||
name: svg2compose-binary | ||
path: build/libs/svg2compose-*-binary.jar | ||
if-no-files-found: error |
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 +1,5 @@ | ||
kotlin.code.style=official | ||
|
||
org.gradle.caching=true | ||
org.gradle.jvmargs=-Dfile.encoding=UTF-8 | ||
org.gradle.parallel=true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
com.android.tools
requires Java 11 or newer.