-
Notifications
You must be signed in to change notification settings - Fork 7
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
bump project up to android SDK version 30 #158
Conversation
bump project up to android SDK version 30
ran the apk through veridex tool, for reference here's the summary: 84 hidden API(s) used: 32 linked against, 52 through reflection and the raw output
|
|
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.
Great analysis! 👏
But we need to use the build tools from the new SDK so it will something like 30.a.b
.
app/build.gradle
Outdated
@@ -18,13 +18,13 @@ androidGitVersion { | |||
} | |||
|
|||
android { | |||
compileSdkVersion 29 | |||
compileSdkVersion 30 | |||
buildToolsVersion "29.0.3" |
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 build tools to the appropriate version as well and test the app after that.
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.
bumped up to 30.0.0
bump buildToolsVersion to 30.0.0
bump project up to android SDK version 30
closes #154