Skip to content

Commit de8f544

Browse files
committed
add rewritten codebase commit
1 parent f350ba4 commit de8f544

File tree

469 files changed

+24560
-27189
lines changed

Some content is hidden

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

469 files changed

+24560
-27189
lines changed

.github/dependabot.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
target-branch: main
8+
- package-ecosystem: gradle
9+
directory: "/"
10+
schedule:
11+
interval: daily
12+
target-branch: main

.github/workflows/build.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build application
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v3
11+
- name: Set up JDK 19
12+
uses: actions/setup-java@v3
13+
with:
14+
distribution: 'temurin'
15+
java-version: 19
16+
cache: gradle
17+
- name: Build with Gradle
18+
run: ./gradlew build --no-daemon

.github/workflows/license.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: License Check
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
check-license-eye:
11+
name: Check license headers
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Check License Headers
16+
uses: apache/skywalking-eyes@main
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Validate Gradle Wrapper
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
validation:
7+
name: Validation
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: gradle/wrapper-validation-action@v1

.gitignore

+20-141
Original file line numberDiff line numberDiff line change
@@ -1,144 +1,23 @@
1-
### Android ###
2-
# Built application files
3-
*.apk
4-
*.ap_
5-
*.aab
6-
7-
# Files for the ART/Dalvik VM
8-
*.dex
9-
10-
# Java class files
11-
*.class
12-
13-
# Generated files
14-
bin/
15-
gen/
16-
out/
17-
18-
# Gradle files
19-
.gradle/
20-
build/
21-
22-
# Local configuration file (sdk path, etc)
23-
local.properties
24-
25-
# Proguard folder generated by Eclipse
26-
proguard/
27-
28-
# Log Files
29-
*.log
30-
31-
# Android Studio Navigation editor temp files
32-
.navigation/
33-
34-
# Android Studio captures folder
35-
captures/
36-
37-
# IntelliJ
381
*.iml
39-
.idea/
40-
41-
# External native build folder generated in Android Studio 2.2 and later
42-
.externalNativeBuild
43-
44-
# Google Services (e.g. APIs or Firebase)
45-
google-services.json
46-
47-
### Android Patch ###
48-
gen-external-apklibs
49-
50-
### AndroidStudio ###
51-
# Covers files to be ignored for android development using Android Studio.
52-
53-
# Gradle files
542
.gradle
55-
56-
# Signing files
57-
.signing/
58-
59-
# Android Studio
60-
/*/build/
61-
/*/local.properties
62-
/*/out
63-
/*/*/build
64-
/*/*/production
65-
*.ipr
66-
*~
67-
*.swp
68-
69-
# Android Patch
70-
71-
# External native build folder generated in Android Studio 2.2 and later
72-
73-
# NDK
74-
obj/
75-
76-
# IntelliJ IDEA
77-
*.iws
78-
/out/
79-
# OS-specific files
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
8010
.DS_Store
81-
.DS_Store?
82-
._*
83-
.Spotlight-V100
84-
.Trashes
85-
ehthumbs.db
86-
Thumbs.db
87-
88-
# Legacy Eclipse project files
89-
.classpath
90-
.project
91-
.cproject
92-
.settings/
93-
94-
# Mobile Tools for Java (J2ME)
95-
.mtj.tmp/
96-
97-
# Package Files #
98-
*.war
99-
*.ear
100-
101-
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
102-
hs_err_pid*
103-
104-
## Plugin-specific files:
105-
106-
# mpeltonen/sbt-idea plugin
107-
.idea_modules/
108-
109-
# JIRA plugin
110-
atlassian-ide-plugin.xml
111-
112-
# Mongo Explorer plugin
113-
.idea/mongoSettings.xml
114-
115-
# Crashlytics plugin (for Android Studio and IntelliJ)
116-
com_crashlytics_export_strings.xml
117-
crashlytics.properties
118-
crashlytics-build.properties
119-
fabric.properties
120-
121-
### AndroidStudio Patch ###
122-
123-
!/gradle/wrapper/gradle-wrapper.jar
124-
125-
### Gradle ###
126-
/build/
127-
128-
# Ignore Gradle GUI config
129-
gradle-app.setting
130-
131-
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
132-
!gradle-wrapper.jar
133-
134-
# Cache of project
135-
.gradletasknamecache
136-
137-
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
138-
# gradle/wrapper/gradle-wrapper.properties
139-
140-
*.vpp.bak_*
141-
*.vpp.lck
142-
143-
app/release/*.json
144-
app/debug/*.json
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx
15+
local.properties
16+
.idea
17+
lint
18+
app/release
19+
20+
# is copied by gradle plugin task
21+
app/src/main/assets/LICENSE
22+
app/src/main/assets/QR_code_guide.md
23+
app/src/main/assets/PRIVACY_POLICY.md

0 commit comments

Comments
 (0)