Skip to content

Commit 3de28c2

Browse files
committed
first commit
1 parent f99c0b3 commit 3de28c2

File tree

278 files changed

+10386
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

278 files changed

+10386
-0
lines changed

.github/workflows/android_build.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ develop, main ]
6+
pull_request:
7+
branches: [ main, develop ]
8+
9+
concurrency:
10+
group: build-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
15+
build:
16+
name: 🔨 Build
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v4
21+
22+
- name: Validate Gradle Wrapper
23+
uses: gradle/wrapper-validation-action@v1
24+
25+
- name: Set up JDK 17
26+
uses: actions/setup-java@v4
27+
with:
28+
java-version: '17'
29+
distribution: 'adopt'
30+
cache: gradle
31+
32+
- name: Make gradle executable
33+
run: chmod +x ./gradlew
34+
35+
- name: Get local.properties from secrets
36+
run: echo "${{secrets.LOCAL_PROPERTIES }}" > $GITHUB_WORKSPACE/local.properties
37+
38+
- name: Run tests
39+
run: ./gradlew test --stacktrace
40+
41+
- name: Build app
42+
run: ./gradlew assemble --stacktrace

.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx
15+
local.properties
16+
/*.apk
17+
/*.aab
18+
/app/release
19+
/app/build

.idea/.gitignore

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.name

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/androidTestResultsUserPreferences.xml

+283
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)