Skip to content

Commit 36ff04b

Browse files
geavenxchulaoaechiaram4n3dw0lfvdonnangelo
authored
v1.0.1
* Simple android UI * Simple android UI * Simple android UI * Initial development * added .idea to .gitignore * fetching userinfo from idp * SeedsScreen and OTP enrollment * added AuthfySdk and implement enrollment, delete seed and generate TOTP * verify TOTP * copy other tokens and logout implementation * logout tested * shows auth screen when open the app * logout goes to auth_screen, changes on HomeScreen * add svg icons * add Strong/TOTP screens * add splash and welcome screens * add risk screen * add connect/tokens screens * small refactor on network utils * use splash screen as starting point * add play services location lib * add home screen * index screens and add colors * add auth and config screens * IDE files --------- Co-authored-by: Juliano Lao <juliano.lao@sec4you.com.br> Co-authored-by: Alex Eduardo Chiaranda <aechiara@gmail.com> Co-authored-by: Angelo Moura <m4n3dw0lf@gmail.com> Co-authored-by: Vitor Cardoso <vitor.cardoso@sec4you.com.br>
1 parent 8575177 commit 36ff04b

85 files changed

Lines changed: 5999 additions & 0 deletions

File tree

Some content is hidden

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

.editorconfig

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# http://editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
9+
# Change these settings to your own preference
10+
indent_style = space
11+
indent_size = 2
12+
13+
# We recommend you to keep these unchanged
14+
end_of_line = lf
15+
charset = utf-8
16+
trim_trailing_whitespace = true
17+
insert_final_newline = true
18+
19+
[*.py]
20+
indent_size = 4
21+
22+
[*.md]
23+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Ref: https://git-scm.com/docs/gitattributes
2+
# Set the default behavior, in case people don't have core.autocrlf set.
3+
* text=auto
4+
5+
*.sh text eol=lf
6+
*.yaml text eol=lf
7+
*.py text eol=lf
8+
*.md text eol=lf
9+
*.html text eol=lf
10+
*.css text eol=lf
11+
*.scss text eol=lf
12+
*.js text eol=lf
13+
*.jsx text eol=lf
14+
*.ts text eol=lf
15+
*.tsx text eol=lf
16+
17+
# Unix-style newlines with a newline ending every file
18+
[*]

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.idea/
2+
*.iml
3+
.gradle
4+
/local.properties
5+
.DS_Store
6+
/build
7+
/captures
8+
.externalNativeBuild
9+
.cxx
10+
local.properties

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 123 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deploymentTargetDropDown.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)