Skip to content

Commit

Permalink
Merge pull request #546 from igorescodro/amp/ios
Browse files Browse the repository at this point in the history
Setup the iOS project and connect to Alkaa
  • Loading branch information
igorescodro authored Aug 21, 2023
2 parents 42969ac + 050f665 commit b415cdf
Show file tree
Hide file tree
Showing 39 changed files with 1,571 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ dependencies {
implementation(projects.features.glance)

implementation(projects.domain)
implementation(projects.shared)

implementation(platform(libs.compose.bom))

Expand Down
9 changes: 7 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
android.useAndroidX=true

org.gradle.jvmargs=-Xmx2048m
org.gradle.parallel=true
kotlin.jvm.target.validation.mode = IGNORE
kotlin.jvm.target.validation.mode=IGNORE
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

# Kotlin multiplatform
org.jetbrains.compose.experimental.uikit.enabled=true
kotlin.mpp.stability.nowarn=true
kotlin.mpp.androidSourceSetLayoutVersion=2
kotlin.native.cacheKind=none
5 changes: 5 additions & 0 deletions ios-app/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
target 'alkaa' do
use_frameworks!
platform :ios, '14.1'
pod 'shared', :path => '../shared'
end
16 changes: 16 additions & 0 deletions ios-app/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PODS:
- shared (1.0.0)

DEPENDENCIES:
- shared (from `../shared`)

EXTERNAL SOURCES:
shared:
:path: "../shared"

SPEC CHECKSUMS:
shared: f56a03b0a627619fc4b75454c8d769480a367abb

PODFILE CHECKSUM: 885759b9ea004080beb3d965efff653c51b35352

COCOAPODS: 1.12.1
32 changes: 32 additions & 0 deletions ios-app/Pods/Local Podspecs/shared.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions ios-app/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b415cdf

Please sign in to comment.