Skip to content

Commit

Permalink
[IOS] Fixing iOS github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kamgurgul committed Jul 29, 2024
1 parent aee0177 commit 9d8780f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ios_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Unit tests
run: ./gradlew testDebugUnitTest
build_and_release:
needs: code-quality
needs: code_quality
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 0 additions & 1 deletion androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ android {
signingConfig = signingConfigs.getByName("release")
isMinifyEnabled = true
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
applicationIdSuffix = ".release"
}
debug {
signingConfig = signingConfigs.getByName("debug")
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
org.gradle.configureondemand=true
org.gradle.caching=true
org.gradle.parallel=true
org.gradle.jvmargs=-Xmx8192M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx8192M"
systemProp.javax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl
systemProp.javax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
Expand Down
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ kotlin {
implementation(libs.androidx.navigation.compose)
implementation(libs.coil)
implementation(libs.kermit.kermit)
implementation(libs.koin.annotations)
api(libs.koin.annotations)
implementation(libs.koin.compose.viewodel)
implementation(libs.koin.core)
implementation(libs.kotlinx.coroutines.core)
Expand Down

0 comments on commit 9d8780f

Please sign in to comment.