-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🔥 Remove template lib * 🔧 Update CI * 🔥 Remove Carthage build * 🔧 Fix install tuist * 🔧 Comment out changelog check * 🔧 Fix install tuist * 🔧 Use Xcode 15.2 * 🔧 Fix install tuist * 🔧 Use FirebaseFetcher in example app * 🔧 Remove underscores from target names * 📝 Update docs
- Loading branch information
Showing
60 changed files
with
165 additions
and
1,067 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,44 +3,23 @@ name: Build | |
on: [pull_request, push] | ||
|
||
jobs: | ||
carthage: | ||
name: Carthage build | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- uses: actions/cache@v3 | ||
with: | ||
path: Carthage | ||
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }} | ||
restore-keys: | | ||
${{ runner.os }}-carthage- | ||
- name: Fetch Carthage dependencies | ||
run: carthage checkout | ||
- name: Carthage build | ||
run: carthage build --no-skip-current --cache-builds --use-xcframeworks | ||
tests: | ||
build: | ||
name: Build | ||
runs-on: macos-13 | ||
defaults: | ||
run: | ||
working-directory: ./ProjectTemplate | ||
runs-on: macos-14 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ../Carthage | ||
path: Carthage | ||
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }} | ||
restore-keys: | | ||
${{ runner.os }}-carthage- | ||
- name: Install Tuist | ||
run: bash <(curl -Ls https://install.tuist.io) | ||
- name: Build Carthage dependencies | ||
run: | | ||
carthage checkout --project-directory .. | ||
carthage build --no-skip-current --cache-builds --use-xcframeworks --project-directory .. | ||
- name: Generate project | ||
run: tuist fetch && tuist generate | ||
run: carthage bootstrap --cache-builds --use-xcframeworks | ||
- name: Build project | ||
run: set -o pipefail && xcodebuild -scheme App -workspace ProjectTemplate.xcworkspace -sdk iphonesimulator ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO | xcpretty | ||
run: | | ||
bash <(curl -Ls https://install.tuist.io) | ||
tuist fetch | ||
tuist generate | ||
tuist build |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
15.1 | ||
15.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.37.0 |
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
AckeeTemplate.xcodeproj/project.xcworkspace/contents.xcworkspacedata
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
AckeeTemplate.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file was deleted.
Oops, something went wrong.
79 changes: 0 additions & 79 deletions
79
AckeeTemplate.xcodeproj/xcshareddata/xcschemes/AckeeTemplate.xcscheme
This file was deleted.
Oops, something went wrong.
66 changes: 0 additions & 66 deletions
66
AckeeTemplate.xcodeproj/xcshareddata/xcschemes/FirebaseFetcher.xcscheme
This file was deleted.
Oops, something went wrong.
38 changes: 38 additions & 0 deletions
38
App/GoogleService/cz.ackee.ProjectTemplate.test/GoogleService-Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CLIENT_ID</key> | ||
<string><id>.apps.googleusercontent.com</string> | ||
<key>REVERSED_CLIENT_ID</key> | ||
<string>com.googleusercontent.apps.<id></string> | ||
<key>ANDROID_CLIENT_ID</key> | ||
<string><id>.apps.googleusercontent.com</string> | ||
<key>API_KEY</key> | ||
<string><key></string> | ||
<key>GCM_SENDER_ID</key> | ||
<string><id></string> | ||
<key>PLIST_VERSION</key> | ||
<string>1</string> | ||
<key>BUNDLE_ID</key> | ||
<string>cz.ackee.ProjectTemplate.test</string> | ||
<key>PROJECT_ID</key> | ||
<string><id></string> | ||
<key>STORAGE_BUCKET</key> | ||
<string><id>.appspot.com</string> | ||
<key>IS_ADS_ENABLED</key> | ||
<false/> | ||
<key>IS_ANALYTICS_ENABLED</key> | ||
<false/> | ||
<key>IS_APPINVITE_ENABLED</key> | ||
<true/> | ||
<key>IS_GCM_ENABLED</key> | ||
<true/> | ||
<key>IS_SIGNIN_ENABLED</key> | ||
<true/> | ||
<key>GOOGLE_APP_ID</key> | ||
<string><id></string> | ||
<key>DATABASE_URL</key> | ||
<string><id></string> | ||
</dict> | ||
</plist> |
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...tTemplate/App/Sources/AppDependency.swift → App/Sources/AppDependency.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import Core | ||
import ACKategories | ||
import AppCore | ||
import Foundation | ||
import UserManager | ||
|
||
final class AppDependency: HasUserManager { | ||
let userManager = createUserManager() | ||
let versionUpdateManager = VersionUpdateManager(fetcher: FirebaseFetcher(key: "min_build_number")) | ||
} | ||
|
||
let appDependencies = AppDependency() |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
github "AckeeCZ/ACKategories" ~> 6.13 | ||
|
||
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAnalyticsBinary.json" ~> 10.19 | ||
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseCrashlyticsBinary.json" ~> 10.19 | ||
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseRemoteConfigBinary.json" ~> 10.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAnalyticsBinary.json" "10.21.0" | ||
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseCrashlyticsBinary.json" "10.21.0" | ||
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseRemoteConfigBinary.json" "10.21.0" | ||
github "AckeeCZ/ACKategories" "6.13.0" |
Oops, something went wrong.