-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update to ASDK v6.10.0 #86
Conversation
@@ -64,6 +64,7 @@ android { | |||
|
|||
buildFeatures { | |||
compose = true | |||
buildConfig = true |
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.
Solves a Gradle warning
@@ -14,7 +14,6 @@ class ExampleApplication : Application() { | |||
// build Firework Android SDK v6 configuration | |||
val config = | |||
FireworkSdkConfig.Builder(this) | |||
.checksumRequired(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.
Deprecated
@@ -1,12 +1,11 @@ | |||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |||
plugins { | |||
id("com.android.application") version "8.2.2" apply false | |||
id("com.android.library") version "8.2.2" apply 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.
Not needed
@@ -1,12 +1,11 @@ | |||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |||
plugins { | |||
id("com.android.application") version "8.2.2" apply false | |||
id("com.android.library") version "8.2.2" apply false | |||
id("com.android.application") version "8.3.1" apply 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.
Updated to the latest
id("org.jetbrains.kotlin.android") version "1.9.22" apply false | ||
id("org.jlleitschuh.gradle.ktlint") version "12.0.3" apply false | ||
id("io.gitlab.arturbosch.detekt") version "1.23.4" apply false | ||
} | ||
|
||
task<Delete>("clean") { | ||
delete = setOf(rootProject.buildDir) |
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.
Deprecated
@@ -21,5 +21,4 @@ kotlin.code.style=official | |||
# resources declared in the library itself and none from the library's dependencies, | |||
# thereby reducing the size of the R class for that library | |||
android.nonTransitiveRClass=true | |||
android.defaults.buildfeatures.buildconfig=true |
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.
Deprecated and causes a warning
@@ -1,6 +1,6 @@ | |||
distributionBase=GRADLE_USER_HOME | |||
distributionPath=wrapper/dists | |||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip | |||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip |
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.
Updated by AGP
@@ -11,6 +11,7 @@ dependencyResolutionManagement { | |||
repositories { | |||
google() | |||
mavenCentral() | |||
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.
Nice to have for testing before release
1d53cc0
to
6d8e5f5
Compare
@@ -46,10 +46,15 @@ android { | |||
abortOnError = true | |||
ignoreWarnings = false | |||
warningsAsErrors = true | |||
|
|||
disable.apply { | |||
add("LeanbackUsesWifi") // required for ivs-player-1.18.0 AndroidManifest ACCESS_WIFI_STATE permission |
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.
6d8e5f5
to
d372192
Compare
Signed-off-by: Mohsen Mirhoseini <[email protected]>
d372192
to
e716225
Compare
No description provided.