forked from mihonapp/mihon
-
Notifications
You must be signed in to change notification settings - Fork 0
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 'upstream/main' into test-1
- Loading branch information
Showing
18 changed files
with
283 additions
and
111 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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: PR build check | ||
on: | ||
pull_request: | ||
paths: | ||
- '**' | ||
- '!**.md' | ||
- '!i18n/src/commonMain/moko-resources/**/strings.xml' | ||
- '!i18n/src/commonMain/moko-resources/**/plurals.xml' | ||
- 'i18n/src/commonMain/moko-resources/base/strings.xml' | ||
- 'i18n/src/commonMain/moko-resources/base/plurals.xml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: Build app | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Clone repo | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
||
- name: Dependency Review | ||
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 | ||
with: | ||
java-version: 17 | ||
distribution: temurin | ||
|
||
- name: Set up gradle | ||
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4.3.0 | ||
|
||
- name: Check code format | ||
run: ./gradlew spotlessCheck | ||
|
||
- name: Build app | ||
run: ./gradlew assembleRelease | ||
|
||
- name: Run unit tests | ||
run: ./gradlew testReleaseUnitTest | ||
|
||
- name: Upload APK | ||
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 | ||
with: | ||
name: arm64-v8a-${{ github.sha }} | ||
path: app/build/outputs/apk/standard/release/app-standard-arm64-v8a-release-unsigned.apk | ||
|
||
- name: Upload mapping | ||
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 | ||
with: | ||
name: mapping-${{ github.sha }} | ||
path: app/build/outputs/mapping/release |
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,39 @@ | ||
name: CI | ||
on: | ||
push: | ||
workflow_call: | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build app | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Clone repo | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 | ||
with: | ||
java-version: 17 | ||
distribution: temurin | ||
|
||
- name: Set up gradle | ||
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4.3.0 | ||
|
||
- name: Check code format | ||
run: ./gradlew spotlessCheck | ||
|
||
- name: Build app | ||
run: ./gradlew assemblePreview | ||
|
||
- name: Upload APK | ||
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 | ||
with: | ||
name: Mihon | ||
path: app/build/outputs/apk/* |
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
11 changes: 11 additions & 0 deletions
11
app/src/analytics-firebase-noop/kotlin/mihon/core/firebase/FirebaseConfig.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,11 @@ | ||
package mihon.core.firebase | ||
|
||
import android.content.Context | ||
|
||
object FirebaseConfig { | ||
fun init(context: Context) = Unit | ||
|
||
fun setAnalyticsEnabled(enabled: Boolean) = Unit | ||
|
||
fun setCrashlyticsEnabled(enabled: Boolean) = Unit | ||
} |
File renamed without changes.
File renamed without changes.
25 changes: 25 additions & 0 deletions
25
app/src/analytics-firebase/kotlin/mihon/core/firebase/FirebaseConfig.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,25 @@ | ||
package mihon.core.firebase | ||
|
||
import android.content.Context | ||
import com.google.firebase.FirebaseApp | ||
import com.google.firebase.analytics.FirebaseAnalytics | ||
import com.google.firebase.crashlytics.FirebaseCrashlytics | ||
|
||
object FirebaseConfig { | ||
private lateinit var analytics: FirebaseAnalytics | ||
private lateinit var crashlytics: FirebaseCrashlytics | ||
|
||
fun init(context: Context) { | ||
analytics = FirebaseAnalytics.getInstance(context) | ||
FirebaseApp.initializeApp(context) | ||
crashlytics = FirebaseCrashlytics.getInstance() | ||
} | ||
|
||
fun setAnalyticsEnabled(enabled: Boolean) { | ||
analytics.setAnalyticsCollectionEnabled(enabled) | ||
} | ||
|
||
fun setCrashlyticsEnabled(enabled: Boolean) { | ||
crashlytics.isCrashlyticsCollectionEnabled = enabled | ||
} | ||
} |
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.