-
Notifications
You must be signed in to change notification settings - Fork 52
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
Fix for Android 15 #75
Conversation
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.
Please update the description to add more details on what the issue was and how youre addressing it here
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' |
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.
what is this specific distribution?
@@ -8,12 +8,17 @@ jobs: | |||
publish: | |||
runs-on: ubuntu-latest | |||
steps: | |||
- uses: actions/checkout@v2 |
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.
why dont we need a checkout action anymore? im particularly worried about this action since you can't test run it afaik
build.gradle
Outdated
@@ -3,10 +3,11 @@ buildscript { | |||
google() | |||
mavenCentral() | |||
jcenter() | |||
mavenLocal() |
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.
Why do we need this?
gradle.properties
Outdated
android.defaults.buildfeatures.buildconfig=true | ||
android.nonTransitiveRClass=false | ||
android.nonFinalResIds=false |
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.
What's the reason for these? In a single module project non-transitive r shouldn't be relevant
gradle/publishing.gradle
Outdated
@@ -26,7 +26,7 @@ afterEvaluate { | |||
publishing { | |||
publications { | |||
maven(MavenPublication) { | |||
from components.release | |||
from components.findByName('release') ?: components.findByName('debug') |
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.
we should not be falling back to publishing debug code to maven
No description provided.