-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop'
- Loading branch information
Showing
378 changed files
with
2,032 additions
and
1,843 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -118,9 +118,9 @@ jobs: | |
|
||
- name: Install Cocoapods | ||
run: | | ||
./gradlew client:podGenIOS resources:podGenIOS --parallel | ||
./gradlew client:podGenIOS res:podGenIOS --parallel | ||
cd ios/CCC | ||
pod install | ||
pod install --repo-update | ||
- name: Build | ||
uses: maierj/[email protected] | ||
|
@@ -136,6 +136,8 @@ jobs: | |
GIT_AUTHORIZATION: ${{ secrets.GIT_AUTHORIZATION }} | ||
SECRET_PASSWORD: ${{ secrets.SECRET_PASSWORD }} | ||
MATCH_PASSWORD: ${{ secrets.SECRET_PASSWORD }} | ||
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 5 | ||
FASTLANE_XCODEBUILD_SETTINGS_RETRIES: 5 | ||
|
||
- name: Set Job Status | ||
id: status | ||
|
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 |
---|---|---|
|
@@ -208,9 +208,9 @@ jobs: | |
- name: Install Cocoapods | ||
run: | | ||
./gradlew client:podGenIOS resources:podGenIOS --parallel | ||
./gradlew client:podGenIOS res:podGenIOS --parallel | ||
cd ios/CCC | ||
pod install | ||
pod install --repo-update | ||
- name: Publish | ||
uses: maierj/[email protected] | ||
|
@@ -226,6 +226,8 @@ jobs: | |
GIT_AUTHORIZATION: ${{ secrets.GIT_AUTHORIZATION }} | ||
SECRET_PASSWORD: ${{ secrets.SECRET_PASSWORD }} | ||
MATCH_PASSWORD: ${{ secrets.SECRET_PASSWORD }} | ||
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 5 | ||
FASTLANE_XCODEBUILD_SETTINGS_RETRIES: 5 | ||
|
||
- name: Set Job Status | ||
id: status | ||
|
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 |
---|---|---|
|
@@ -106,9 +106,9 @@ jobs: | |
- name: Install Cocoapods | ||
run: | | ||
./gradlew client:podGenIOS resources:podGenIOS --parallel | ||
./gradlew client:podGenIOS res:podGenIOS --parallel | ||
cd ios/CCC | ||
pod install | ||
pod install --repo-update | ||
- name: Distrubute | ||
uses: maierj/[email protected] | ||
|
@@ -124,6 +124,8 @@ jobs: | |
GIT_AUTHORIZATION: ${{ secrets.GIT_AUTHORIZATION }} | ||
SECRET_PASSWORD: ${{ secrets.SECRET_PASSWORD }} | ||
MATCH_PASSWORD: ${{ secrets.SECRET_PASSWORD }} | ||
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 5 | ||
FASTLANE_XCODEBUILD_SETTINGS_RETRIES: 5 | ||
|
||
- name: Set Job Status | ||
id: status | ||
|
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
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
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
15 changes: 0 additions & 15 deletions
15
android/src/main/kotlin/com/oztechan/ccc/android/di/PlatformModule.kt
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
android/src/main/kotlin/com/oztechan/ccc/android/di/module/AppModule.kt
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,17 @@ | ||
package com.oztechan.ccc.android.di.module | ||
|
||
import com.oztechan.ccc.ad.AdManager | ||
import com.oztechan.ccc.ad.AdManagerImpl | ||
import com.oztechan.ccc.analytics.AnalyticsManager | ||
import com.oztechan.ccc.analytics.AnalyticsManagerImpl | ||
import com.oztechan.ccc.billing.BillingManager | ||
import com.oztechan.ccc.billing.BillingManagerImpl | ||
import org.koin.core.module.dsl.bind | ||
import org.koin.core.module.dsl.singleOf | ||
import org.koin.dsl.module | ||
|
||
internal var appModule = module { | ||
singleOf(::BillingManagerImpl) { bind<BillingManager>() } | ||
singleOf(::AdManagerImpl) { bind<AdManager>() } | ||
singleOf(::AnalyticsManagerImpl) { bind<AnalyticsManager>() } | ||
} |
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
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
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
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
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
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
Oops, something went wrong.