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

Update libs #118

Closed
wants to merge 13 commits into from
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
.externalNativeBuild
.cxx
local.properties
.kotlin

#Cocopods
appiOS/Pods/
Expand Down
14 changes: 1 addition & 13 deletions appAndroid/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
alias(libs.plugins.firebase.appDistribution.plugin)
alias(libs.plugins.firebase.crashlytics.plugin)
alias(libs.plugins.firebase.performance.plugin)
alias(libs.plugins.compose.compiler)
}

android {
Expand Down Expand Up @@ -52,9 +53,6 @@ android {
compose = true
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.7"
}
namespace = "com.vickbt.notflix"
}

Expand All @@ -78,14 +76,4 @@ dependencies {
implementation(libs.firebase.analytics)
implementation(libs.firebase.crashlytics)
implementation(libs.firebase.performance)

testImplementation(libs.jUnitKtx)
testImplementation(libs.kotlinX.coroutines.test)
testImplementation(libs.mockk)
testImplementation(libs.kotlin.test)
testImplementation(libs.archTestCore)
testImplementation(libs.robolectric)

androidTestImplementation(libs.test.rules)
androidTestImplementation(libs.test.runner)
}
1 change: 1 addition & 0 deletions appDesktop/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
alias(libs.plugins.jvm)
alias(libs.plugins.compose)
alias(libs.plugins.compose.compiler)
}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions appiOS/Notflix.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@
1CE0FB042A6A8B4F00B26932 /* Sources */,
1CE0FB052A6A8B4F00B26932 /* Frameworks */,
1CE0FB062A6A8B4F00B26932 /* Resources */,
3D4331466293CD88FAB5966F /* [CP] Copy Pods Resources */,
987E1C4A95024182A3B0F904 /* [CP] Embed Pods Frameworks */,
8706BB71802248BED512C737 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
Expand Down Expand Up @@ -286,7 +286,7 @@
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
3D4331466293CD88FAB5966F /* [CP] Copy Pods Resources */ = {
8706BB71802248BED512C737 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
Expand Down
8 changes: 1 addition & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ plugins {
alias(libs.plugins.googleServices.plugin) apply false

alias(libs.plugins.compose) apply false
alias(libs.plugins.compose.compiler) apply false

alias(libs.plugins.firebase.appDistribution.plugin) apply false
alias(libs.plugins.firebase.crashlytics.plugin) apply false
alias(libs.plugins.firebase.performance.plugin) apply false

alias(libs.plugins.ktLint)
alias(libs.plugins.detekt)
alias(libs.plugins.gradleVersionUpdates)
}

allprojects {
Expand Down Expand Up @@ -47,12 +47,6 @@ subprojects {
parallel = true
config = files("${project.rootDir}/config/detekt/detekt.yml")
}

tasks.withType<com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask> {
checkForGradleUpdate = true
outputDir = "build/dependencyUpdates"
reportfileName = "report"
}
}

tasks.register("clean").configure {
Expand Down
Loading
Loading